]> source.dussan.org Git - jquery-ui.git/commitdiff
Tabs: Whitespace cleanup
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Thu, 1 Mar 2012 12:30:57 +0000 (13:30 +0100)
committerJörn Zaefferer <joern.zaefferer@gmail.com>
Thu, 1 Mar 2012 12:30:57 +0000 (13:30 +0100)
ui/jquery.ui.tabs.js

index 90f021a6957a369a1501982e3af05b12eb1e12bf..513aa261393128e4638231eaaf1f0e9f601f1b57 100644 (file)
@@ -15,7 +15,7 @@
 
 var tabId = 0,
        rhash = /#.*$/;
-       
+
 function getNextTabId() {
        return ++tabId;
 }
@@ -24,7 +24,7 @@ var isLocal = function( anchor ) {
        // clone the node to work around IE 6 not normalizing the href property
        // if it's manually set, i.e., a.href = "#foo" kills the normalization
        anchor = anchor.cloneNode( false );
-       return anchor.hash.length > 1 && 
+       return anchor.hash.length > 1 &&
                        anchor.href.replace( rhash, "" ) === location.href.replace( rhash, "" );
 };