public
Description: Updated hourly from the JQuery SVN repo
Homepage: http://jquery.com
Clone URL: git://github.com/JackDanger/jquery.git
Search Repo:
UI Resizable: Fixed #2882: Don't use global jQuery variable inside main 
closure.

git-svn-id: http://jqueryjs.googlecode.com/svn/trunk@5617 
c715fcbe-d12f-0410-84c4-316a508785bb
scott.gonzalez (author)
Fri May 16 08:50:29 -0700 2008
commit  e237d9cbfc4358bc8d1bed3d7ace6008d2f17747
tree    c711a0ab8085b79a428c96504184a11741211d33
parent  94831586be6ae9fa88af33697e2076e3741ccecf
...
122
123
124
125
 
126
127
128
...
526
527
528
529
 
530
531
532
...
122
123
124
 
125
126
127
128
...
526
527
528
 
529
530
531
532
0
@@ -122,7 +122,7 @@
0
         };
0
     
0
         for(var i = 0; i < n.length; i++) {
0
- var handle = jQuery.trim(n[i]), dt = o.defaultTheme, hname = 'ui-resizable-'+handle, loadDefault = !$.ui.css(hname) && !o.knobHandles, userKnobClass = $.ui.css('ui-resizable-knob-handle'),
0
+ var handle = $.trim(n[i]), dt = o.defaultTheme, hname = 'ui-resizable-'+handle, loadDefault = !$.ui.css(hname) && !o.knobHandles, userKnobClass = $.ui.css('ui-resizable-knob-handle'),
0
                 allDefTheme = $.extend(dt[hname], dt['ui-resizable-handle']), allKnobTheme = $.extend(o.knobTheme[hname], !userKnobClass ? o.knobTheme['ui-resizable-handle'] : {});
0
           
0
           // increase zIndex of sw, se, ne, nw axis
0
@@ -526,7 +526,7 @@
0
     
0
     start: function(e, ui) {
0
       var o = ui.options, self = ui.instance, el = self.element;
0
- var oc = o.containment, ce = (oc instanceof jQuery) ? oc.get(0) : (/parent/.test(oc)) ? el.parent().get(0) : oc;
0
+ var oc = o.containment, ce = (oc instanceof $) ? oc.get(0) : (/parent/.test(oc)) ? el.parent().get(0) : oc;
0
       if (!ce) return;
0
       
0
       if (/document/.test(oc) || oc == document) {

Comments

    No one has commented yet.