diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-07-29 01:58:21 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-07-29 01:58:21 +0000 |
commit | 357a3c38b9e51fb28567ae9eb132e063d75cb1b6 (patch) | |
tree | 7b85dfe9ce25f0fc45f66df9ebc78589ce34b484 /ui/ui.sortable.js | |
parent | 36d96a9e82d739fa250ddf75296f3c5edb3ad3c0 (diff) | |
download | jquery-ui-357a3c38b9e51fb28567ae9eb132e063d75cb1b6.tar.gz jquery-ui-357a3c38b9e51fb28567ae9eb132e063d75cb1b6.zip |
sortable: the outer container is not set to relative anymore, preventing some weird IE bugs
Diffstat (limited to 'ui/ui.sortable.js')
-rw-r--r-- | ui/ui.sortable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.sortable.js b/ui/ui.sortable.js index 24c934852..ec42d2589 100644 --- a/ui/ui.sortable.js +++ b/ui/ui.sortable.js @@ -38,7 +38,7 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, { this.floating = this.items.length ? (/left|right/).test(this.items[0].item.css('float')) : false; //Let's determine the parent's offset - if(!(/(relative|absolute|fixed)/).test(this.element.css('position'))) this.element.css('position', 'relative'); + //if(!(/(relative|absolute|fixed)/).test(this.element.css('position'))) this.element.css('position', 'relative'); this.offset = this.element.offset(); //Initialize mouse events for interaction |