Add missing semicolon
This commit is contained in:
@@ -157,7 +157,7 @@ ol.interaction.DragAndDrop.prototype.setMap = function(map) {
|
||||
ol.interaction.DragAndDrop.handleStop_, this),
|
||||
ol.events.listen(dropArea, ol.events.EventType.DROP,
|
||||
ol.interaction.DragAndDrop.handleStop_, this)
|
||||
]
|
||||
];
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -42,14 +42,14 @@ ol.interaction.KeyboardPan = function(opt_options) {
|
||||
this.defaultCondition_ = function(mapBrowserEvent) {
|
||||
return ol.events.condition.noModifierKeys(mapBrowserEvent) &&
|
||||
ol.events.condition.targetNotEditable(mapBrowserEvent);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @private
|
||||
* @type {ol.events.ConditionType}
|
||||
*/
|
||||
this.condition_ = options.condition !== undefined ?
|
||||
options.condition : this.defaultCondition_
|
||||
options.condition : this.defaultCondition_;
|
||||
|
||||
/**
|
||||
* @private
|
||||
|
||||
@@ -117,7 +117,7 @@ ol.interaction.Modify = function(options) {
|
||||
this.defaultDeleteCondition_ = function(mapBrowserEvent) {
|
||||
return ol.events.condition.noModifierKeys(mapBrowserEvent) &&
|
||||
ol.events.condition.singleClick(mapBrowserEvent);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @type {ol.events.ConditionType}
|
||||
|
||||
Reference in New Issue
Block a user