mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Fixes a variety of typographical problems. Closes gh-853
This commit is contained in:
parent
c210e08c3a
commit
7b5ffcdac8
24
speed/jquery-basis.js
vendored
24
speed/jquery-basis.js
vendored
@ -519,7 +519,7 @@ jQuery.extend({
|
|||||||
|
|
||||||
noop: function() {},
|
noop: function() {},
|
||||||
|
|
||||||
// Evalulates a script in a global context
|
// Evaluates a script in a global context
|
||||||
globalEval: function( data ) {
|
globalEval: function( data ) {
|
||||||
if ( data && rnotwhite.test(data) ) {
|
if ( data && rnotwhite.test(data) ) {
|
||||||
// Inspired by code by Andrea Giammarchi
|
// Inspired by code by Andrea Giammarchi
|
||||||
@ -1308,7 +1308,7 @@ jQuery.fn.extend({
|
|||||||
classNames = value.split( rspace );
|
classNames = value.split( rspace );
|
||||||
|
|
||||||
while ( (className = classNames[ i++ ]) ) {
|
while ( (className = classNames[ i++ ]) ) {
|
||||||
// check each className given, space seperated list
|
// check each className given, space separated list
|
||||||
state = isBool ? state : !self.hasClass( className );
|
state = isBool ? state : !self.hasClass( className );
|
||||||
self[ state ? "addClass" : "removeClass" ]( className );
|
self[ state ? "addClass" : "removeClass" ]( className );
|
||||||
}
|
}
|
||||||
@ -1362,7 +1362,7 @@ jQuery.fn.extend({
|
|||||||
var option = options[ i ];
|
var option = options[ i ];
|
||||||
|
|
||||||
if ( option.selected ) {
|
if ( option.selected ) {
|
||||||
// Get the specifc value for the option
|
// Get the specific value for the option
|
||||||
value = jQuery(option).val();
|
value = jQuery(option).val();
|
||||||
|
|
||||||
// We don't need an array for one selects
|
// We don't need an array for one selects
|
||||||
@ -2634,7 +2634,7 @@ var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^
|
|||||||
baseHasDuplicate = true;
|
baseHasDuplicate = true;
|
||||||
|
|
||||||
// Here we check if the JavaScript engine is using some sort of
|
// Here we check if the JavaScript engine is using some sort of
|
||||||
// optimization where it does not always call our comparision
|
// optimization where it does not always call our comparison
|
||||||
// function. If that is the case, discard the hasDuplicate value.
|
// function. If that is the case, discard the hasDuplicate value.
|
||||||
// Thus far that includes Google Chrome.
|
// Thus far that includes Google Chrome.
|
||||||
[0, 0].sort(function(){
|
[0, 0].sort(function(){
|
||||||
@ -3413,7 +3413,7 @@ if ( document.documentElement.compareDocumentPosition ) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// Utility function for retreiving the text value of an array of DOM nodes
|
// Utility function for retrieving the text value of an array of DOM nodes
|
||||||
function getText( elems ) {
|
function getText( elems ) {
|
||||||
var ret = "", elem;
|
var ret = "", elem;
|
||||||
|
|
||||||
@ -4147,12 +4147,12 @@ jQuery.fn.extend({
|
|||||||
if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
|
if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
|
||||||
// IE copies events bound via attachEvent when
|
// IE copies events bound via attachEvent when
|
||||||
// using cloneNode. Calling detachEvent on the
|
// using cloneNode. Calling detachEvent on the
|
||||||
// clone will also remove the events from the orignal
|
// clone will also remove the events from the original.
|
||||||
// In order to get around this, we use innerHTML.
|
// In order to get around this, we use innerHTML.
|
||||||
// Unfortunately, this means some modifications to
|
// Unfortunately, this means some modifications to
|
||||||
// attributes in IE that are actually only stored
|
// attributes in IE that are actually only stored
|
||||||
// as properties will not be copied (such as the
|
// as properties will not be copied (such as the
|
||||||
// the name attribute on an input).
|
// name attribute on an input).
|
||||||
var html = this.outerHTML, ownerDocument = this.ownerDocument;
|
var html = this.outerHTML, ownerDocument = this.ownerDocument;
|
||||||
if ( !html ) {
|
if ( !html ) {
|
||||||
var div = ownerDocument.createElement("div");
|
var div = ownerDocument.createElement("div");
|
||||||
@ -4884,7 +4884,7 @@ jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".sp
|
|||||||
jQuery.extend({
|
jQuery.extend({
|
||||||
|
|
||||||
get: function( url, data, callback, type ) {
|
get: function( url, data, callback, type ) {
|
||||||
// shift arguments if data argument was omited
|
// shift arguments if data argument was omitted
|
||||||
if ( jQuery.isFunction( data ) ) {
|
if ( jQuery.isFunction( data ) ) {
|
||||||
type = type || callback;
|
type = type || callback;
|
||||||
callback = data;
|
callback = data;
|
||||||
@ -4909,7 +4909,7 @@ jQuery.extend({
|
|||||||
},
|
},
|
||||||
|
|
||||||
post: function( url, data, callback, type ) {
|
post: function( url, data, callback, type ) {
|
||||||
// shift arguments if data argument was omited
|
// shift arguments if data argument was omitted
|
||||||
if ( jQuery.isFunction( data ) ) {
|
if ( jQuery.isFunction( data ) ) {
|
||||||
type = type || callback;
|
type = type || callback;
|
||||||
callback = data;
|
callback = data;
|
||||||
@ -4946,7 +4946,7 @@ jQuery.extend({
|
|||||||
// Create the request object; Microsoft failed to properly
|
// Create the request object; Microsoft failed to properly
|
||||||
// implement the XMLHttpRequest in IE7 (can't request local files),
|
// implement the XMLHttpRequest in IE7 (can't request local files),
|
||||||
// so we use the ActiveXObject when it is available
|
// so we use the ActiveXObject when it is available
|
||||||
// This function can be overriden by calling jQuery.ajaxSetup
|
// This function can be overridden by calling jQuery.ajaxSetup
|
||||||
xhr: window.XMLHttpRequest && (window.location.protocol !== "file:" || !window.ActiveXObject) ?
|
xhr: window.XMLHttpRequest && (window.location.protocol !== "file:" || !window.ActiveXObject) ?
|
||||||
function() {
|
function() {
|
||||||
return new window.XMLHttpRequest();
|
return new window.XMLHttpRequest();
|
||||||
@ -5148,7 +5148,7 @@ jQuery.extend({
|
|||||||
jQuery.event.trigger( "ajaxStop" );
|
jQuery.event.trigger( "ajaxStop" );
|
||||||
}
|
}
|
||||||
|
|
||||||
// close opended socket
|
// close opened socket
|
||||||
xhr.abort();
|
xhr.abort();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -5254,7 +5254,7 @@ jQuery.extend({
|
|||||||
complete();
|
complete();
|
||||||
}
|
}
|
||||||
|
|
||||||
// firefox 1.5 doesn't fire statechange for sync requests
|
// Firefox 1.5 doesn't fire statechange for sync requests
|
||||||
if ( !s.async ) {
|
if ( !s.async ) {
|
||||||
onreadystatechange();
|
onreadystatechange();
|
||||||
}
|
}
|
||||||
|
@ -709,7 +709,7 @@ jQuery.extend({
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// aborting is no longer a cancelation
|
// aborting is no longer a cancellation
|
||||||
strAbort = "abort";
|
strAbort = "abort";
|
||||||
|
|
||||||
// Install callbacks on deferreds
|
// Install callbacks on deferreds
|
||||||
|
@ -111,7 +111,7 @@ if ( jQuery.support.ajax ) {
|
|||||||
xml;
|
xml;
|
||||||
|
|
||||||
// Firefox throws exceptions when accessing properties
|
// Firefox throws exceptions when accessing properties
|
||||||
// of an xhr when a network error occured
|
// of an xhr when a network error occurred
|
||||||
// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)
|
// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
@ -122,7 +122,7 @@ jQuery.fn.extend({
|
|||||||
classNames = value.split( core_rspace );
|
classNames = value.split( core_rspace );
|
||||||
|
|
||||||
while ( (className = classNames[ i++ ]) ) {
|
while ( (className = classNames[ i++ ]) ) {
|
||||||
// check each className given, space seperated list
|
// check each className given, space separated list
|
||||||
state = isBool ? state : !self.hasClass( className );
|
state = isBool ? state : !self.hasClass( className );
|
||||||
self[ state ? "addClass" : "removeClass" ]( className );
|
self[ state ? "addClass" : "removeClass" ]( className );
|
||||||
}
|
}
|
||||||
|
@ -374,15 +374,15 @@ function augmentWidthOrHeight( elem, name, extra, isBorderBox ) {
|
|||||||
val -= parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0;
|
val -= parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// at this point, extra isnt border nor margin, so remove border
|
// at this point, extra isn't border nor margin, so remove border
|
||||||
if ( extra !== "margin" ) {
|
if ( extra !== "margin" ) {
|
||||||
val -= parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0;
|
val -= parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// at this point, extra isnt content, so add padding
|
// at this point, extra isn't content, so add padding
|
||||||
val += parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0;
|
val += parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0;
|
||||||
|
|
||||||
// at this point, extra isnt content nor padding, so add border
|
// at this point, extra isn't content nor padding, so add border
|
||||||
if ( extra !== "padding" ) {
|
if ( extra !== "padding" ) {
|
||||||
val += parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0;
|
val += parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0;
|
||||||
}
|
}
|
||||||
|
2
src/effects.js
vendored
2
src/effects.js
vendored
@ -404,7 +404,7 @@ Tween.propHooks = {
|
|||||||
return tween.elem[ tween.prop ];
|
return tween.elem[ tween.prop ];
|
||||||
}
|
}
|
||||||
|
|
||||||
// passing any value as a 4th paramter to .css will automatically
|
// passing any value as a 4th parameter to .css will automatically
|
||||||
// attempt a parseFloat and fallback to a string if the parse fails
|
// attempt a parseFloat and fallback to a string if the parse fails
|
||||||
// so, simple values such as "10px" are parsed to Float.
|
// so, simple values such as "10px" are parsed to Float.
|
||||||
// complex values such as "rotate(1rad)" are returned as is.
|
// complex values such as "rotate(1rad)" are returned as is.
|
||||||
|
Loading…
Reference in New Issue
Block a user