Skip to content

Commit

Permalink
fix FF minus key, close Leaflet#869, update changelog and build
Browse files Browse the repository at this point in the history
  • Loading branch information
mourner committed Jan 17, 2013
1 parent 8facf33 commit eed2c8a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion dist/leaflet-src.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion dist/leaflet.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/map/handler/Map.Keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit eed2c8a

Please sign in to comment.