Skip to content

Commit

Permalink
2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom MacWright committed Jun 10, 2011
1 parent 75e2cd4 commit c4a7835
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
## Changelog

### 2.1.3

* Fixing a touch javascript error.

### 2.1.1

* Overeager touch-events handling fixed.
Expand Down
4 changes: 2 additions & 2 deletions control/lib/tooltip.js
Expand Up @@ -28,7 +28,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
if (!el) return;
var event;
var remove = function() {
this.parentNode.removeChild(this);
if (this.parentNode) this.parentNode.removeChild(this);
};
if (el.style['-webkit-transition'] !== undefined && this.animationOut) {
event = 'webkitTransitionEnd';
Expand All @@ -40,7 +40,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
el.addEventListener('transitionend', remove, false);
el.className += ' ' + this.animationOut;
} else {
el.parentNode.removeChild(el);
if (el.parentNode) el.parentNode.removeChild(el);
}
};

Expand Down
4 changes: 2 additions & 2 deletions dist/wax.g.js
Expand Up @@ -499,7 +499,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
if (!el) return;
var event;
var remove = function() {
this.parentNode.removeChild(this);
if (this.parentNode) this.parentNode.removeChild(this);
};
if (el.style['-webkit-transition'] !== undefined && this.animationOut) {
event = 'webkitTransitionEnd';
Expand All @@ -511,7 +511,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
el.addEventListener('transitionend', remove, false);
el.className += ' ' + this.animationOut;
} else {
el.parentNode.removeChild(el);
if (el.parentNode) el.parentNode.removeChild(el);
}
};

Expand Down
2 changes: 1 addition & 1 deletion dist/wax.g.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/wax.leaf.js
Expand Up @@ -499,7 +499,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
if (!el) return;
var event;
var remove = function() {
this.parentNode.removeChild(this);
if (this.parentNode) this.parentNode.removeChild(this);
};
if (el.style['-webkit-transition'] !== undefined && this.animationOut) {
event = 'webkitTransitionEnd';
Expand All @@ -511,7 +511,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
el.addEventListener('transitionend', remove, false);
el.className += ' ' + this.animationOut;
} else {
el.parentNode.removeChild(el);
if (el.parentNode) el.parentNode.removeChild(el);
}
};

Expand Down
2 changes: 1 addition & 1 deletion dist/wax.leaf.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/wax.mm.js
Expand Up @@ -499,7 +499,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
if (!el) return;
var event;
var remove = function() {
this.parentNode.removeChild(this);
if (this.parentNode) this.parentNode.removeChild(this);
};
if (el.style['-webkit-transition'] !== undefined && this.animationOut) {
event = 'webkitTransitionEnd';
Expand All @@ -511,7 +511,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
el.addEventListener('transitionend', remove, false);
el.className += ' ' + this.animationOut;
} else {
el.parentNode.removeChild(el);
if (el.parentNode) el.parentNode.removeChild(el);
}
};

Expand Down
2 changes: 1 addition & 1 deletion dist/wax.mm.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/wax.ol.js
Expand Up @@ -499,7 +499,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
if (!el) return;
var event;
var remove = function() {
this.parentNode.removeChild(this);
if (this.parentNode) this.parentNode.removeChild(this);
};
if (el.style['-webkit-transition'] !== undefined && this.animationOut) {
event = 'webkitTransitionEnd';
Expand All @@ -511,7 +511,7 @@ wax.tooltip.prototype.hideTooltip = function(el) {
el.addEventListener('transitionend', remove, false);
el.className += ' ' + this.animationOut;
} else {
el.parentNode.removeChild(el);
if (el.parentNode) el.parentNode.removeChild(el);
}
};

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 package.json
@@ -1,6 +1,6 @@
{
"name": "wax",
"version": "2.1.1",
"version": "2.1.3",
"description": "Tools for improving web maps.",
"author": {
"name": "MapBox",
Expand Down

0 comments on commit c4a7835

Please sign in to comment.