Tweaked a couple cases where == was used instead of ===.
[jquery.git] / src / support.js
index 91ee77d..ef5f010 100644 (file)
@@ -20,7 +20,7 @@
 
        jQuery.support = {
                // IE strips leading whitespace when .innerHTML is used
-               leadingWhitespace: div.firstChild.nodeType == 3,
+               leadingWhitespace: div.firstChild.nodeType === 3,
 
                // Make sure that tbody elements aren't automatically inserted
                // IE will insert them into empty tables
        
        jQuery.support.submitBubbles = eventSupported("submit");
        jQuery.support.changeBubbles = eventSupported("change");
-       jQuery.support.focusBubbles = eventSupported("focus");
 
        // release memory in IE
        root = script = div = all = a = null;