Remove Win/Meta key to zoom out binding, fix #869
This commit is contained in:
parent
f184df2c27
commit
9e89753c74
@ -20,6 +20,7 @@ An in-progress version being developed on the master branch.
|
||||
* Fixed a bug where tiles sometimes disappeared on initial map load on Android 2/3 (by [@danzel](https://github.com/danzel)). [#868](https://github.com/CloudMade/Leaflet/pull/868)
|
||||
* Fixed a bug where map would occasionally flicker near the border on zoom or pan on Chrome.
|
||||
* Fixed a bug where `Path` `bringToFront` and `bringToBack` didn't return `this`.
|
||||
* Removed zoom out on Win/Meta key binding (since it interferes with global keyboard shortcuts). [#869](https://github.com/CloudMade/Leaflet/issues/869)
|
||||
|
||||
## 0.4.2 (August 1, 2012)
|
||||
|
||||
|
@ -12,8 +12,8 @@ L.Map.Keyboard = L.Handler.extend({
|
||||
right: [39],
|
||||
down: [40],
|
||||
up: [38],
|
||||
zoomIn: [187, 61, 107],
|
||||
zoomOut: [189, 109, 0]
|
||||
zoomIn: [187, 107, 61],
|
||||
zoomOut: [189, 109]
|
||||
},
|
||||
|
||||
initialize: function (map) {
|
||||
|
Loading…
Reference in New Issue
Block a user