Use a more explicit variable name

This commit is contained in:
Éric Lemoine
2014-03-13 08:16:58 +01:00
committed by tsauerwein
parent df71854561
commit b939ca24d7

View File

@@ -25,7 +25,7 @@ ol.interaction.Pointer = function() {
* @type {boolean} * @type {boolean}
* @private * @private
*/ */
this.handled_ = false; this.handlingDownUpSequence_ = false;
/** /**
* @type {Object.<number, ol.pointer.PointerEvent>} * @type {Object.<number, ol.pointer.PointerEvent>}
@@ -139,24 +139,25 @@ ol.interaction.Pointer.prototype.handleMapBrowserEvent =
var stopEvent = false; var stopEvent = false;
var view = mapBrowserEvent.map.getView(); var view = mapBrowserEvent.map.getView();
this.updateTrackedPointers_(mapBrowserPointerEvent); this.updateTrackedPointers_(mapBrowserPointerEvent);
if (this.handled_) { if (this.handlingDownUpSequence_) {
if (mapBrowserPointerEvent.type == if (mapBrowserPointerEvent.type ==
ol.MapBrowserEvent.EventType.POINTERDRAG) { ol.MapBrowserEvent.EventType.POINTERDRAG) {
this.handlePointerDrag(mapBrowserEvent); this.handlePointerDrag(mapBrowserEvent);
} else if (mapBrowserPointerEvent.type == } else if (mapBrowserPointerEvent.type ==
ol.MapBrowserEvent.EventType.POINTERUP) { ol.MapBrowserEvent.EventType.POINTERUP) {
this.handled_ = this.handlePointerUp(mapBrowserPointerEvent); this.handlingDownUpSequence_ =
if (!this.handled_) { this.handlePointerUp(mapBrowserPointerEvent);
if (!this.handlingDownUpSequence_) {
view.setHint(ol.ViewHint.INTERACTING, -1); view.setHint(ol.ViewHint.INTERACTING, -1);
} }
} }
} }
if (mapBrowserPointerEvent.type == ol.MapBrowserEvent.EventType.POINTERDOWN) { if (mapBrowserPointerEvent.type == ol.MapBrowserEvent.EventType.POINTERDOWN) {
var handled = this.handlePointerDown(mapBrowserPointerEvent); var handled = this.handlePointerDown(mapBrowserPointerEvent);
if (!this.handled_ && handled) { if (!this.handlingDownUpSequence_ && handled) {
view.setHint(ol.ViewHint.INTERACTING, 1); view.setHint(ol.ViewHint.INTERACTING, 1);
} }
this.handled_ = handled; this.handlingDownUpSequence_ = handled;
stopEvent = this.shouldStopEvent(handled); stopEvent = this.shouldStopEvent(handled);
} }
return !stopEvent; return !stopEvent;