Update bower dependencies.
This commit is contained in:
parent
818bdad5af
commit
2beab45f32
185 changed files with 21480 additions and 8110 deletions
13
app/bower_components/jquery/src/var/isFunction.js
vendored
Normal file
13
app/bower_components/jquery/src/var/isFunction.js
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return function isFunction( obj ) {
|
||||
|
||||
// Support: Chrome <=57, Firefox <=52
|
||||
// In some browsers, typeof returns "function" for HTML <object> elements
|
||||
// (i.e., `typeof document.createElement( "object" ) === "function"`).
|
||||
// We don't want to classify *any* DOM node as a function.
|
||||
return typeof obj === "function" && typeof obj.nodeType !== "number";
|
||||
};
|
||||
|
||||
} );
|
8
app/bower_components/jquery/src/var/isWindow.js
vendored
Normal file
8
app/bower_components/jquery/src/var/isWindow.js
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return function isWindow( obj ) {
|
||||
return obj != null && obj === obj.window;
|
||||
};
|
||||
|
||||
} );
|
|
@ -3,6 +3,6 @@ define( function() {
|
|||
|
||||
// Only count HTML whitespace
|
||||
// Other whitespace should count in values
|
||||
// https://html.spec.whatwg.org/multipage/infrastructure.html#space-character
|
||||
// https://infra.spec.whatwg.org/#ascii-whitespace
|
||||
return ( /[^\x20\t\r\n\f]+/g );
|
||||
} );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue