aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Bakaus <paul.bakaus@googlemail.com>2010-01-28 17:31:02 +0000
committerPaul Bakaus <paul.bakaus@googlemail.com>2010-01-28 17:31:02 +0000
commit5ef97d7a13e5f4d633097c56ceaf0e4aa516b0e3 (patch)
tree481c714cb21ae515e2f24f97b380fed80d4e97b1
parent9617d150548df1dead1da9743d99abe378b41a3f (diff)
downloadjquery-ui-5ef97d7a13e5f4d633097c56ceaf0e4aa516b0e3.tar.gz
jquery-ui-5ef97d7a13e5f4d633097c56ceaf0e4aa516b0e3.zip
effects: fixed #4097 - bind/fold didnt work
-rw-r--r--ui/jquery.effects.core.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/jquery.effects.core.js b/ui/jquery.effects.core.js
index aba35659c..7656ff41a 100644
--- a/ui/jquery.effects.core.js
+++ b/ui/jquery.effects.core.js
@@ -365,6 +365,7 @@ $.extend($.effects, {
});
element.wrap(wrapper);
+ wrapper = element.parent(); //Hotfix for jQuery 1.4 since some change in wrap() seems to actually loose the reference to the wrapped element
// transfer positioning properties to the wrapper
if (element.css('position') == 'static') {