Skip to content

chore: fix spelling #283

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- update jquery to 3.3.0
- Add possibility to test HTML: all, attribute prefix, attribute contains,
attribute ends with, child, and class selectors
- Fix matching mutiple calls for the same selector/function exception
- Fix matching multiple calls for the same selector/function exception

## 4.3.1

Expand Down
6 changes: 3 additions & 3 deletions vendor/assets/javascripts/jquery.js
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ setDocument = Sizzle.setDocument = function( node ) {

// Support: IE<10
// Check if getElementById returns elements by name
// The broken getElementById methods don't pick up programatically-set names,
// The broken getElementById methods don't pick up programmatically-set names,
// so use a roundabout getElementsByName test
support.getById = assert(function( div ) {
docElem.appendChild( div ).id = expando;
Expand Down Expand Up @@ -4051,7 +4051,7 @@ jQuery.fn.extend( {
elem = this[ 0 ],
attrs = elem && elem.attributes;

// Special expections of .data basically thwart jQuery.access,
// Special exceptions of .data basically thwart jQuery.access,
// so implement the relevant behavior ourselves

// Gets all values
Expand Down Expand Up @@ -7118,7 +7118,7 @@ jQuery.extend( {
value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
}

// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,
// Fixes #8908, it can be done more correctly by specifying setters in cssHooks,
// but it would mean to define eight
// (for every problematic property) identical functions
if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
Expand Down
2 changes: 1 addition & 1 deletion vendor/assets/javascripts/jquery2.js
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ setDocument = Sizzle.setDocument = function( node ) {

// Support: IE<10
// Check if getElementById returns elements by name
// The broken getElementById methods don't pick up programatically-set names,
// The broken getElementById methods don't pick up programmatically-set names,
// so use a roundabout getElementsByName test
support.getById = assert(function( div ) {
docElem.appendChild( div ).id = expando;
Expand Down