aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effects.explode.js
diff options
context:
space:
mode:
authorPaul Bakaus <paul.bakaus@googlemail.com>2009-02-10 13:11:34 +0000
committerPaul Bakaus <paul.bakaus@googlemail.com>2009-02-10 13:11:34 +0000
commit51c338b9edc14fe5b05138f3fc4093c4459c30ea (patch)
tree8aca5bf29e7a100fb3869a7f181653df1dab9c2c /ui/effects.explode.js
parent2e0f967680447e93e04eea2764f53ea3977b4f5f (diff)
downloadjquery-ui-51c338b9edc14fe5b05138f3fc4093c4459c30ea.tar.gz
jquery-ui-51c338b9edc14fe5b05138f3fc4093c4459c30ea.zip
all: fixed jslint warnings
Diffstat (limited to 'ui/effects.explode.js')
-rw-r--r--ui/effects.explode.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/effects.explode.js b/ui/effects.explode.js
index 0578ec51b..6d43ae4fd 100644
--- a/ui/effects.explode.js
+++ b/ui/effects.explode.js
@@ -24,8 +24,8 @@ $.effects.explode = function(o) {
var offset = el.offset();
//Substract the margins - not fixing the problem yet.
- offset.top -= parseInt(el.css("marginTop")) || 0;
- offset.left -= parseInt(el.css("marginLeft")) || 0;
+ offset.top -= parseInt(el.css("marginTop"),10) || 0;
+ offset.left -= parseInt(el.css("marginLeft"),10) || 0;
var width = el.outerWidth(true);
var height = el.outerHeight(true);