Skip to content

Commit

Permalink
Push to 6.4.2 with zoomer touch improvement.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcw committed Jul 6, 2012
1 parent 769f4ce commit 6bfa87a
Show file tree
Hide file tree
Showing 15 changed files with 23 additions and 18 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog

## 6.4.2

* Binds `wax.mm.zoomer()` controls to `touchstart` events to make
them more responsive on mobile devices.

## 6.4.1

* The `wax.gridmanager()` code now sets the `gridUrl` getter
Expand Down
4 changes: 2 additions & 2 deletions control/mm/zoomer.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ wax.mm.zoomer = function(map) {
bean.add(zoomin, 'mousedown dblclick', function(e) {
e.stop();
});
bean.add(zoomin, 'click', function(e) {
bean.add(zoomin, 'touchstart click', function(e) {
e.stop();
map.zoomIn();
}, false);
Expand All @@ -26,7 +26,7 @@ wax.mm.zoomer = function(map) {
bean.add(zoomout, 'mousedown dblclick', function(e) {
e.stop();
});
bean.add(zoomout, 'click', function(e) {
bean.add(zoomout, 'touchstart click', function(e) {
e.stop();
map.zoomOut();
});
Expand Down
2 changes: 1 addition & 1 deletion dist/wax.esri.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* wax - 6.4.1 - v6.0.4-30-gc81bce5 */
/* wax - 6.4.2 - v6.0.4-31-g769f4ce */


!function (name, context, definition) {
Expand Down
2 changes: 1 addition & 1 deletion dist/wax.esri.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wax.g.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* wax - 6.4.1 - v6.0.4-30-gc81bce5 */
/* wax - 6.4.2 - v6.0.4-31-g769f4ce */


!function (name, context, definition) {
Expand Down
2 changes: 1 addition & 1 deletion dist/wax.g.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wax.leaf.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* wax - 6.4.1 - v6.0.4-30-gc81bce5 */
/* wax - 6.4.2 - v6.0.4-31-g769f4ce */


!function (name, context, definition) {
Expand Down
2 changes: 1 addition & 1 deletion dist/wax.leaf.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/wax.mm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* wax - 6.4.1 - v6.0.4-30-gc81bce5 */
/* wax - 6.4.2 - v6.0.4-31-g769f4ce */


!function (name, context, definition) {
Expand Down Expand Up @@ -3991,7 +3991,7 @@ wax.mm.zoomer = function(map) {
bean.add(zoomin, 'mousedown dblclick', function(e) {
e.stop();
});
bean.add(zoomin, 'click', function(e) {
bean.add(zoomin, 'touchstart click', function(e) {
e.stop();
map.zoomIn();
}, false);
Expand All @@ -4003,7 +4003,7 @@ wax.mm.zoomer = function(map) {
bean.add(zoomout, 'mousedown dblclick', function(e) {
e.stop();
});
bean.add(zoomout, 'click', function(e) {
bean.add(zoomout, 'touchstart click', function(e) {
e.stop();
map.zoomOut();
});
Expand Down
4 changes: 2 additions & 2 deletions dist/wax.mm.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wax.ol.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* wax - 6.4.1 - v6.0.4-30-gc81bce5 */
/* wax - 6.4.2 - v6.0.4-31-g769f4ce */


!function (name, context, definition) {
Expand Down
2 changes: 1 addition & 1 deletion dist/wax.ol.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wax.p.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* wax - 6.4.1 - v6.0.4-30-gc81bce5 */
/* wax - 6.4.2 - v6.0.4-31-g769f4ce */


!function (name, context, definition) {
Expand Down
2 changes: 1 addition & 1 deletion dist/wax.p.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wax",
"version": "6.4.1",
"version": "6.4.2",
"description": "Tools for improving web maps.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 6bfa87a

Please sign in to comment.