Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ To lint the JavaScript, HTML, and CSS, as well as run a smoke test in PhantomJS,
$ grunt
```

To run the tests for a specific plugin in your browser, open the approriate file from the `/tests/unit/` directory, for example: `http://localhost/tests/unit/accordion/accordion.html`. The domain will be dependent on your local server configuation; if there is a port, be sure to include it.
To run the tests for a specific plugin in your browser, open the approriate file from the `/tests/unit/` directory, for example: `http://localhost/tests/unit/accordion/accordion.html`. The domain will be dependent on your local server configuration; if there is a port, be sure to include it.

Ideally you would test in all of our [supported browsers](http://jqueryui.com/browser-support/), but if you don't have all of these browsers available, that's ok.

Expand Down
2 changes: 1 addition & 1 deletion external/globalize.js
Original file line number Diff line number Diff line change
Expand Up @@ -1481,7 +1481,7 @@ Globalize.parseFloat = function( value, radix, cultureSelector ) {
if ( value.indexOf(culture.numberFormat.currency.symbol) > -1 ) {
// remove currency symbol
value = value.replace( culture.numberFormat.currency.symbol, "" );
// replace decimal seperator
// replace decimal separator
value = value.replace( culture.numberFormat.currency["."], culture.numberFormat["."] );
}

Expand Down
2 changes: 1 addition & 1 deletion tests/jquery-1.6.1.js
Original file line number Diff line number Diff line change
Expand Up @@ -2000,7 +2000,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 );
}
Expand Down
2 changes: 1 addition & 1 deletion tests/jquery-1.6.2.js
Original file line number Diff line number Diff line change
Expand Up @@ -2029,7 +2029,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 );
}
Expand Down
2 changes: 1 addition & 1 deletion tests/jquery-1.6.3.js
Original file line number Diff line number Diff line change
Expand Up @@ -2067,7 +2067,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 );
}
Expand Down
2 changes: 1 addition & 1 deletion tests/jquery-1.6.4.js
Original file line number Diff line number Diff line change
Expand Up @@ -2068,7 +2068,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 );
}
Expand Down
2 changes: 1 addition & 1 deletion tests/jquery-1.6.js
Original file line number Diff line number Diff line change
Expand Up @@ -1997,7 +1997,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 );
}
Expand Down
2 changes: 1 addition & 1 deletion tests/jquery-1.7.1.js
Original file line number Diff line number Diff line change
Expand Up @@ -2278,7 +2278,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 );
}
Expand Down
2 changes: 1 addition & 1 deletion tests/jquery-1.7.2.js
Original file line number Diff line number Diff line change
Expand Up @@ -2338,7 +2338,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 );
}
Expand Down
2 changes: 1 addition & 1 deletion tests/jquery-1.7.js
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,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 );
}
Expand Down
2 changes: 1 addition & 1 deletion ui/sortable.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ return $.widget("ui.sortable", $.ui.mouse, {
// currentContainer is switched before the placeholder is moved.
//
// Without this, moving items in "sub-sortables" can cause
// the placeholder to jitter beetween the outer and inner container.
// the placeholder to jitter between the outer and inner container.
if (item.instance !== this.currentContainer) {
continue;
}
Expand Down