Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request openlayers#3912 from fredj/zoomslider_event_type
Browse files Browse the repository at this point in the history
Fix the event type fired by goog.fx.Dragger
  • Loading branch information
fredj committed Jul 22, 2015
2 parents 49cc39c + 7634c0c commit abb5fef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ol/control/zoomslidercontrol.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ goog.require('goog.dom.TagName');
goog.require('goog.events');
goog.require('goog.events.Event');
goog.require('goog.events.EventType');
goog.require('goog.fx.DragDropEvent');
goog.require('goog.fx.DragEvent');
goog.require('goog.fx.Dragger');
goog.require('goog.fx.Dragger.EventType');
goog.require('goog.math');
Expand Down Expand Up @@ -222,7 +222,7 @@ ol.control.ZoomSlider.prototype.handleContainerClick_ = function(browserEvent) {

/**
* Handle dragger start events.
* @param {goog.fx.DragDropEvent} event The dragdropevent.
* @param {goog.fx.DragEvent} event The drag event.
* @private
*/
ol.control.ZoomSlider.prototype.handleDraggerStart_ = function(event) {
Expand All @@ -233,7 +233,7 @@ ol.control.ZoomSlider.prototype.handleDraggerStart_ = function(event) {
/**
* Handle dragger drag events.
*
* @param {goog.fx.DragDropEvent} event The dragdropevent.
* @param {goog.fx.DragEvent} event The drag event.
* @private
*/
ol.control.ZoomSlider.prototype.handleDraggerDrag_ = function(event) {
Expand All @@ -245,7 +245,7 @@ ol.control.ZoomSlider.prototype.handleDraggerDrag_ = function(event) {

/**
* Handle dragger end events.
* @param {goog.fx.DragDropEvent} event The dragdropevent.
* @param {goog.fx.DragEvent} event The drag event.
* @private
*/
ol.control.ZoomSlider.prototype.handleDraggerEnd_ = function(event) {
Expand Down

0 comments on commit abb5fef

Please sign in to comment.