summaryrefslogtreecommitdiff
path: root/loleaflet/build
diff options
context:
space:
mode:
authorMihai Varga <mihai.varga@collabora.com>2015-07-24 12:04:18 +0300
committerMihai Varga <mihai.varga@collabora.com>2015-07-24 16:04:38 +0300
commitd33f71d32d1cef48fdee63ee0d6c5c1f4d9d048c (patch)
tree7d6ef23e32faa310639627c448057ba7ee715616 /loleaflet/build
parent9b097f376d6d339c0a77587b4fab75ba6482f06f (diff)
loleaflet: renamed Map.ScrollWheelZoom to Map.Scroll
Diffstat (limited to 'loleaflet/build')
-rw-r--r--loleaflet/build/deps.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/loleaflet/build/deps.js b/loleaflet/build/deps.js
index f4b8cd4a6..9b3091c8c 100644
--- a/loleaflet/build/deps.js
+++ b/loleaflet/build/deps.js
@@ -166,11 +166,17 @@ var deps = {
heading: 'Interaction'
},
+ MapScroll: {
+ src: ['dom/DomEvent.js',
+ 'core/Handler.js',
+ 'map/handler/Map.Scroll.js'],
+ desc: 'Handles the mouse wheel scroll',
+ },
+
MouseZoom: {
src: ['dom/DomEvent.js',
'core/Handler.js',
- 'map/handler/Map.DoubleClickZoom.js',
- 'map/handler/Map.ScrollWheelZoom.js'],
+ 'map/handler/Map.DoubleClickZoom.js'],
desc: 'Scroll wheel zoom and double click zoom on the map.'
},