Permalink
Browse files
Fixing spacing problems from rkatic's patches.
- Loading branch information
Showing
with
3 additions
and
3 deletions.
-
+3
−3
src/traversing.js
|
@@ -58,14 +58,14 @@ jQuery.fn.extend({ |
|
|
var cur = this, closer = 0; |
|
|
while ( cur && cur.ownerDocument && cur !== context ) { |
|
|
if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selector) ) { |
|
|
jQuery.lastCloser = closer; |
|
|
jQuery.lastCloser = closer; |
|
|
return cur; |
|
|
} |
|
|
cur = cur.parentNode; |
|
|
closer++; |
|
|
} |
|
|
jQuery.lastCloser = -1; |
|
|
return null; |
|
|
jQuery.lastCloser = -1; |
|
|
return null; |
|
|
}); |
|
|
}, |
|
|
|
|
|
This comment has been minimized.
rkatic repliedNov 7, 2009
Strange. I wonder how additional spacing was generated.
This comment has been minimized.
rkatic repliedNov 8, 2009
Aha, real tabs are used.