fix FF minus key, close #869, update changelog and build
This commit is contained in:
parent
8facf33896
commit
eed2c8a12b
@ -119,6 +119,7 @@ Be sure to read through these changes to avoid any issues when upgrading from ol
|
||||
* Fixed a bug with box zoom throwing a JS error in IE6-7 (by [@danzel](https://github.com/danzel)). [#1071](https://github.com/Leaflet/Leaflet/pull/1071)
|
||||
* Fixed a bug where `TileLayer` `bringToFront/Back()` throwed an error in IE6-8. [#1168](https://github.com/Leaflet/Leaflet/issues/1168)
|
||||
* Fixed array type checking in the code to be more consistent in a cross-frame environment (by [@oslek](https://github.com/oslek)). [#1279](https://github.com/Leaflet/Leaflet/pull/1279)
|
||||
* Fixed a bug with `-` key not working in Firefox 15+ (thanks to [@mattesCZ](https://github.com/mattesCZ)). [#869](https://github.com/Leaflet/Leaflet/issues/869)
|
||||
|
||||
## 0.4.5 (October 25, 2012)
|
||||
|
||||
|
2
dist/leaflet-src.js
vendored
2
dist/leaflet-src.js
vendored
@ -6724,7 +6724,7 @@ L.Map.Keyboard = L.Handler.extend({
|
||||
down: [40],
|
||||
up: [38],
|
||||
zoomIn: [187, 107, 61],
|
||||
zoomOut: [189, 109]
|
||||
zoomOut: [189, 109, 173]
|
||||
},
|
||||
|
||||
initialize: function (map) {
|
||||
|
2
dist/leaflet.js
vendored
2
dist/leaflet.js
vendored
File diff suppressed because one or more lines are too long
@ -16,7 +16,7 @@ L.Map.Keyboard = L.Handler.extend({
|
||||
down: [40],
|
||||
up: [38],
|
||||
zoomIn: [187, 107, 61],
|
||||
zoomOut: [189, 109]
|
||||
zoomOut: [189, 109, 173]
|
||||
},
|
||||
|
||||
initialize: function (map) {
|
||||
|
Loading…
Reference in New Issue
Block a user