mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update confirm
This commit is contained in:
parent
166a16b60d
commit
1ea5d5f307
191 changed files with 8714 additions and 48569 deletions
20
dashboard-ui/bower_components/jquery/src/data/accepts.js
vendored
Normal file
20
dashboard-ui/bower_components/jquery/src/data/accepts.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
define([
|
||||
"../core"
|
||||
], function( jQuery ) {
|
||||
|
||||
/**
|
||||
* Determines whether an object can have data
|
||||
*/
|
||||
jQuery.acceptData = function( owner ) {
|
||||
// Accepts only:
|
||||
// - Node
|
||||
// - Node.ELEMENT_NODE
|
||||
// - Node.DOCUMENT_NODE
|
||||
// - Object
|
||||
// - Any
|
||||
/* jshint -W018 */
|
||||
return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
|
||||
};
|
||||
|
||||
return jQuery.acceptData;
|
||||
});
|
23
dashboard-ui/bower_components/jquery/src/data/support.js
vendored
Normal file
23
dashboard-ui/bower_components/jquery/src/data/support.js
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
define( [
|
||||
"../var/document",
|
||||
"../var/support"
|
||||
], function( document, support ) {
|
||||
|
||||
( function() {
|
||||
var div = document.createElement( "div" );
|
||||
|
||||
// Support: IE<9
|
||||
support.deleteExpando = true;
|
||||
try {
|
||||
delete div.test;
|
||||
} catch ( e ) {
|
||||
support.deleteExpando = false;
|
||||
}
|
||||
|
||||
// Null elements to avoid leaks in IE.
|
||||
div = null;
|
||||
} )();
|
||||
|
||||
return support;
|
||||
|
||||
} );
|
Loading…
Add table
Add a link
Reference in a new issue