Tweaked a couple cases where == was used instead of ===.
This commit is contained in:
parent
209751fcbd
commit
e083d15fc7
4 changed files with 6 additions and 6 deletions
|
@ -389,7 +389,7 @@ jQuery.event = {
|
||||||
event.metaKey = event.ctrlKey;
|
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
|
// Note: button is not normalized, so don't use it
|
||||||
if ( !event.which && event.button !== undefined ) {
|
if ( !event.which && event.button !== undefined ) {
|
||||||
event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));
|
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;
|
data = undefined;
|
||||||
}
|
}
|
||||||
fn = thisObject === undefined ? fn : jQuery.event.proxy( fn, thisObject );
|
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 );
|
jQuery( this ).unbind( event, handler );
|
||||||
return fn.apply( this, arguments );
|
return fn.apply( this, arguments );
|
||||||
}) : fn;
|
}) : fn;
|
||||||
|
|
|
@ -416,7 +416,7 @@ jQuery.extend({
|
||||||
div.firstChild && div.firstChild.childNodes :
|
div.firstChild && div.firstChild.childNodes :
|
||||||
|
|
||||||
// String was a bare <thead> or <tfoot>
|
// String was a bare <thead> or <tfoot>
|
||||||
wrap[1] == "<table>" && !hasBody ?
|
wrap[1] === "<table>" && !hasBody ?
|
||||||
div.childNodes :
|
div.childNodes :
|
||||||
[];
|
[];
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ jQuery.extend({
|
||||||
if ( fn ) {
|
if ( fn ) {
|
||||||
// Add a progress sentinel to prevent the fx queue from being
|
// Add a progress sentinel to prevent the fx queue from being
|
||||||
// automatically dequeued
|
// automatically dequeued
|
||||||
if ( type == "fx" ) { queue.unshift("inprogress"); }
|
if ( type === "fx" ) { queue.unshift("inprogress"); }
|
||||||
|
|
||||||
fn.call(elem, function() { jQuery.dequeue(elem, type); });
|
fn.call(elem, function() { jQuery.dequeue(elem, type); });
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ jQuery.fn.extend({
|
||||||
return this.each(function(i, elem){
|
return this.each(function(i, elem){
|
||||||
var queue = jQuery.queue( this, type, data );
|
var queue = jQuery.queue( this, type, data );
|
||||||
|
|
||||||
if ( type == "fx" && queue[0] !== "inprogress" ) {
|
if ( type === "fx" && queue[0] !== "inprogress" ) {
|
||||||
jQuery.dequeue( this, type );
|
jQuery.dequeue( this, type );
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
jQuery.support = {
|
jQuery.support = {
|
||||||
// IE strips leading whitespace when .innerHTML is used
|
// 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
|
// Make sure that tbody elements aren't automatically inserted
|
||||||
// IE will insert them into empty tables
|
// IE will insert them into empty tables
|
||||||
|
|
Loading…
Reference in a new issue