Skip to content

Commit

Permalink
Merge branch 'master' of https://www.github.com/Viglino/ol-ext
Browse files Browse the repository at this point in the history
  • Loading branch information
Viglino committed Dec 9, 2021
2 parents 4e92e26 + 66aee1c commit c941289
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/ol-ext.js
Original file line number Diff line number Diff line change
Expand Up @@ -25790,7 +25790,7 @@ ol.interaction.TouchCursorSelect = function(options) {
});
this._selection = null;
this._layerFilter = options.layerFilter;
this._filter = options._filter;
this._filter = options.filter;
this._style = options.style || ol.style.Style.defaultStyle(true);
this.set('hitTolerance', options.hitTolerance || 0);
this.on(['change:active', 'dragging'], function() { this.select() });
Expand Down
2 changes: 1 addition & 1 deletion dist/ol-ext.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/interaction/TouchCursorSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var ol_interaction_TouchCursorSelect = function(options) {

this._selection = null;
this._layerFilter = options.layerFilter;
this._filter = options._filter;
this._filter = options.filter;
this._style = options.style || ol_style_Style_defaultStyle(true);
this.set('hitTolerance', options.hitTolerance || 0);

Expand Down

0 comments on commit c941289

Please sign in to comment.