Skip to content

Commit

Permalink
Turn off mouse events for highlighted BigCZ geom
Browse files Browse the repository at this point in the history
Turning off mouse events prevents an event from firing when the feature
is hovered over, but is in the process of being rerendered.

Refs #2114
  • Loading branch information
caseycesari committed Aug 31, 2017
1 parent 8686ef2 commit eb145e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mmw/js/src/core/views.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ var dataCatalogActiveStyle = {
opacity: 1,
fill: true,
fillColor: 'gold',
fillOpacity: 0.2
fillOpacity: 0.2,
pointerEvents: 'none'
};

var selectedGeocoderAreaStyle = {
Expand Down

0 comments on commit eb145e6

Please sign in to comment.