Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf: Expose original event as part of click events #1329

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
103 changes: 103 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,108 @@
# GeoJS Change Log

## Version 1.12.2

### Improvements

- Expose original event as part of click events ([#1329](../../pull/1329))

## Version 1.12.1

### Improvements

- Attempt to reinitialize the webgl context when restored ([#1327](../../pull/1327))
- Zero out uniform arrays by default ([#1327](../../pull/1327))

## Version 1.12.0

### Changes

- Update to modern d3 ([#1309](../../pull/1309))

## Version 1.11.2

### Bug Fixes

- Fix textureHandle accessor ([#1308](../../pull/1308))

## Version 1.11.1

### Bug Fixes

- Ensure compatibility with older systems ([#1305](../../pull/1305))

## Version 1.11.0

### Changes

- Never include vtkjs in the bundle ([#1304](../../pull/1304))

## Version 1.10.20

### Performance Improvements

- Skip rendering empty text values ([#1300](../../pull/1300))

## Version 1.10.19

### Bug Fixes

- Ensure compatibility with older systems ([#1293](../../pull/1293))

## Version 1.10.18

### Changes

- Change default back to OSM ([#1292](../../pull/1292))

## Version 1.10.17

### Bug Fixes

- Fix the name of one of the tile map options ([#1277](../../pull/1277))

## Version 1.10.16

### Bug Fixes

- Remove debug statement ([#1276](../../pull/1276))

## Version 1.10.15

### Improvements

- Add mouseup and mousedown events ([#1275](../../pull/1275))

## Version 1.10.14

### Improvements

- Add an action where the middle mouse button pans ([#1269](../../pull/1269))

## Version 1.10.13

### Bug Fixes

- When binding an array of events, don't duplicate ([#1265](../../pull/1265))

## Version 1.10.12

### Bug Fixes

- Improve quad cropping to zero ([#1258](../../pull/1258))

## Version 1.10.11

### Bug Fixes

- Fix an issue cropping large canvas quads ([#1250](../../pull/1250))

## Version 1.10.10

### Bug Fixes

- Fix setting nearest pixel on texture creation ([#1246](../../pull/1246))

## Version 1.10.9

### Performance Improvements
Expand Down
1 change: 1 addition & 0 deletions src/mapInteractor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1665,6 +1665,7 @@ var mapInteractor = function (args) {
// add information about the button state to the event information
var details = m_this.mouse();
details.buttonsDown = m_clickMaybe.buttons;
details.evt = evt;

// reset click detector variable
m_this._setClickMaybe(false);
Expand Down