Remove Win/Meta key to zoom out binding, fix #869

This commit is contained in:
Vladimir Agafonkin 2012-08-06 19:00:48 +03:00
parent f184df2c27
commit 9e89753c74
2 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -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) {