]> source.dussan.org Git - jquery-ui.git/commitdiff
Resizable documentScroll reference
authorEduardo Lundgren <eduardolundgren@gmail.com>
Tue, 27 Jan 2009 06:00:41 +0000 (06:00 +0000)
committerEduardo Lundgren <eduardolundgren@gmail.com>
Tue, 27 Jan 2009 06:00:41 +0000 (06:00 +0000)
ui/ui.resizable.js

index b4d7d74d37102ab466d31661ad55056d168363ba..28a5583df862a5072960cef19097713f1969b748 100644 (file)
@@ -224,7 +224,7 @@ $.widget("ui.resizable", $.extend({}, $.ui.mouse, {
                if (el.is('.ui-draggable') || (/absolute/).test(el.css('position'))) {
                        // sOffset decides if document scrollOffset will be added to the top/left of the resizable element
                        var sOffset = $.browser.msie && !o.containment && (/absolute/).test(el.css('position')) && !(/relative/).test(el.parent().css('position'));
-                       var dscrollt = sOffset ? o.documentScroll.top : 0, dscrolll = sOffset ? o.documentScroll.left : 0;
+                       var dscrollt = sOffset ? this.documentScroll.top : 0, dscrolll = sOffset ? this.documentScroll.left : 0;
 
                        el.css({ position: 'absolute', top: (iniPos.top + dscrollt), left: (iniPos.left + dscrolll) });
                }