From e083d15fc786a853e54b800e3798536f1d958301 Mon Sep 17 00:00:00 2001 From: jeresig Date: Mon, 21 Dec 2009 18:02:02 -0500 Subject: [PATCH] Tweaked a couple cases where == was used instead of ===. --- src/event.js | 4 ++-- src/manipulation.js | 2 +- src/queue.js | 4 ++-- src/support.js | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/event.js b/src/event.js index a4eebf5..72ebcf7 100644 --- a/src/event.js +++ b/src/event.js @@ -389,7 +389,7 @@ jQuery.event = { event.metaKey = event.ctrlKey; } - // Add which for click: 1 == left; 2 == middle; 3 == right + // Add which for click: 1 === left; 2 === middle; 3 === right // Note: button is not normalized, so don't use it if ( !event.which && event.button !== undefined ) { event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) )); @@ -755,7 +755,7 @@ jQuery.each(["bind", "one"], function(i, name) { data = undefined; } fn = thisObject === undefined ? fn : jQuery.event.proxy( fn, thisObject ); - var handler = name == "one" ? jQuery.event.proxy( fn, function( event ) { + var handler = name === "one" ? jQuery.event.proxy( fn, function( event ) { jQuery( this ).unbind( event, handler ); return fn.apply( this, arguments ); }) : fn; diff --git a/src/manipulation.js b/src/manipulation.js index cfb9c9d..4f7ee65 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -416,7 +416,7 @@ jQuery.extend({ div.firstChild && div.firstChild.childNodes : // String was a bare or - wrap[1] == "" && !hasBody ? + wrap[1] === "
" && !hasBody ? div.childNodes : []; diff --git a/src/queue.js b/src/queue.js index e636ffb..3770f4d 100644 --- a/src/queue.js +++ b/src/queue.js @@ -27,7 +27,7 @@ jQuery.extend({ if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued - if ( type == "fx" ) { queue.unshift("inprogress"); } + if ( type === "fx" ) { queue.unshift("inprogress"); } fn.call(elem, function() { jQuery.dequeue(elem, type); }); } @@ -47,7 +47,7 @@ jQuery.fn.extend({ return this.each(function(i, elem){ var queue = jQuery.queue( this, type, data ); - if ( type == "fx" && queue[0] !== "inprogress" ) { + if ( type === "fx" && queue[0] !== "inprogress" ) { jQuery.dequeue( this, type ); } }); diff --git a/src/support.js b/src/support.js index 249fb15..ef5f010 100644 --- a/src/support.js +++ b/src/support.js @@ -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 -- 1.7.10.4