aboutsummaryrefslogtreecommitdiffstats
path: root/speed/jquery-basis.js
diff options
context:
space:
mode:
authorChris Faulkner <thefaulkner@gmail.com>2012-07-11 09:46:21 -0400
committerRick Waldron <waldron.rick@gmail.com>2012-07-11 09:46:21 -0400
commit7b5ffcdac8e1cc4b110690cddc6345f44ae0aaab (patch)
tree0a94bba47cd44ac6da50bb5bdefe4f804f733a86 /speed/jquery-basis.js
parentc210e08c3a73dca302afee24186b48f62ada9fba (diff)
downloadjquery-7b5ffcdac8e1cc4b110690cddc6345f44ae0aaab.tar.gz
jquery-7b5ffcdac8e1cc4b110690cddc6345f44ae0aaab.zip
Fixes a variety of typographical problems. Closes gh-853
Diffstat (limited to 'speed/jquery-basis.js')
-rw-r--r--speed/jquery-basis.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/speed/jquery-basis.js b/speed/jquery-basis.js
index fc1842087..f5cb04ce3 100644
--- a/speed/jquery-basis.js
+++ b/speed/jquery-basis.js
@@ -519,7 +519,7 @@ jQuery.extend({
noop: function() {},
- // Evalulates a script in a global context
+ // Evaluates a script in a global context
globalEval: function( data ) {
if ( data && rnotwhite.test(data) ) {
// Inspired by code by Andrea Giammarchi
@@ -1308,7 +1308,7 @@ jQuery.fn.extend({
classNames = value.split( rspace );
while ( (className = classNames[ i++ ]) ) {
- // check each className given, space seperated list
+ // check each className given, space separated list
state = isBool ? state : !self.hasClass( className );
self[ state ? "addClass" : "removeClass" ]( className );
}
@@ -1362,7 +1362,7 @@ jQuery.fn.extend({
var option = options[ i ];
if ( option.selected ) {
- // Get the specifc value for the option
+ // Get the specific value for the option
value = jQuery(option).val();
// We don't need an array for one selects
@@ -2634,7 +2634,7 @@ var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^
baseHasDuplicate = true;
// 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.
// Thus far that includes Google Chrome.
[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 ) {
var ret = "", elem;
@@ -4147,12 +4147,12 @@ jQuery.fn.extend({
if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
// IE copies events bound via attachEvent when
// 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.
// Unfortunately, this means some modifications to
// attributes in IE that are actually only stored
// 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;
if ( !html ) {
var div = ownerDocument.createElement("div");
@@ -4884,7 +4884,7 @@ jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".sp
jQuery.extend({
get: function( url, data, callback, type ) {
- // shift arguments if data argument was omited
+ // shift arguments if data argument was omitted
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
@@ -4909,7 +4909,7 @@ jQuery.extend({
},
post: function( url, data, callback, type ) {
- // shift arguments if data argument was omited
+ // shift arguments if data argument was omitted
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
@@ -4946,7 +4946,7 @@ jQuery.extend({
// Create the request object; Microsoft failed to properly
// implement the XMLHttpRequest in IE7 (can't request local files),
// 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) ?
function() {
return new window.XMLHttpRequest();
@@ -5148,7 +5148,7 @@ jQuery.extend({
jQuery.event.trigger( "ajaxStop" );
}
- // close opended socket
+ // close opened socket
xhr.abort();
return false;
}
@@ -5254,7 +5254,7 @@ jQuery.extend({
complete();
}
- // firefox 1.5 doesn't fire statechange for sync requests
+ // Firefox 1.5 doesn't fire statechange for sync requests
if ( !s.async ) {
onreadystatechange();
}