mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update now playing page
This commit is contained in:
parent
878eac1535
commit
19f8c11c38
100 changed files with 45182 additions and 417 deletions
18
dashboard-ui/bower_components/jquery/src/manipulation/_evalUrl.js
vendored
Normal file
18
dashboard-ui/bower_components/jquery/src/manipulation/_evalUrl.js
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
define([
|
||||
"../ajax"
|
||||
], function( jQuery ) {
|
||||
|
||||
jQuery._evalUrl = function( url ) {
|
||||
return jQuery.ajax({
|
||||
url: url,
|
||||
type: "GET",
|
||||
dataType: "script",
|
||||
async: false,
|
||||
global: false,
|
||||
"throws": true
|
||||
});
|
||||
};
|
||||
|
||||
return jQuery._evalUrl;
|
||||
|
||||
});
|
32
dashboard-ui/bower_components/jquery/src/manipulation/support.js
vendored
Normal file
32
dashboard-ui/bower_components/jquery/src/manipulation/support.js
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
define([
|
||||
"../var/support"
|
||||
], function( support ) {
|
||||
|
||||
(function() {
|
||||
var fragment = document.createDocumentFragment(),
|
||||
div = fragment.appendChild( document.createElement( "div" ) ),
|
||||
input = document.createElement( "input" );
|
||||
|
||||
// Support: Safari<=5.1
|
||||
// Check state lost if the name is set (#11217)
|
||||
// Support: Windows Web Apps (WWA)
|
||||
// `name` and `type` must use .setAttribute for WWA (#14901)
|
||||
input.setAttribute( "type", "radio" );
|
||||
input.setAttribute( "checked", "checked" );
|
||||
input.setAttribute( "name", "t" );
|
||||
|
||||
div.appendChild( input );
|
||||
|
||||
// Support: Safari<=5.1, Android<4.2
|
||||
// Older WebKit doesn't clone checked state correctly in fragments
|
||||
support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
|
||||
|
||||
// Support: IE<=11+
|
||||
// Make sure textarea (and checkbox) defaultValue is properly cloned
|
||||
div.innerHTML = "<textarea>x</textarea>";
|
||||
support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
|
||||
})();
|
||||
|
||||
return support;
|
||||
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue