[KSS-checkins] r41765 - kukit/kukit.js/trunk/kukit

reebalazs at codespeak.net reebalazs at codespeak.net
Sun Apr 1 17:44:14 CEST 2007


Author: reebalazs
Date: Sun Apr  1 17:44:12 2007
New Revision: 41765

Modified:
   kukit/kukit.js/trunk/kukit/dom.js
Log:
Fix semicolons

Modified: kukit/kukit.js/trunk/kukit/dom.js
==============================================================================
--- kukit/kukit.js/trunk/kukit/dom.js	(original)
+++ kukit/kukit.js/trunk/kukit/dom.js	Sun Apr  1 17:44:12 2007
@@ -141,11 +141,10 @@
     tagName = node.tagName.toLowerCase();
     if ((tagName == 'input') || (tagName == 'select') || (tagName == 'textarea')) {
         node.focus();
-    }
-    else {
+    } else {
         kukit.logWarning('Focus on node that cannot have focus !');
-    };
-}
+    }
+};
 
 /*
 *  Gets the textual content of the node


More information about the Kukit-checkins mailing list