mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
update components
This commit is contained in:
parent
5ca7a2ad34
commit
a08bf4ec89
@ -23,7 +23,7 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<div>
|
<div>
|
||||||
<paper-button on-tap="toggleExpand" id="expandButton" class="emby-collapsible-button" style="margin:0;display: flex; justify-content: center; align-items: center;">
|
<paper-button on-tap="toggleExpand" id="expandButton" class="emby-collapsible-button" style="margin:0;display: flex; align-items: center;">
|
||||||
<h3 class="emby-collapsible-title" title="[[title]]">[[title]]</h3>
|
<h3 class="emby-collapsible-title" title="[[title]]">[[title]]</h3>
|
||||||
<iron-icon id="expandIcon" style="margin-left: auto; margin-right: .5em;"></iron-icon>
|
<iron-icon id="expandIcon" style="margin-left: auto; margin-right: .5em;"></iron-icon>
|
||||||
</paper-button>
|
</paper-button>
|
||||||
|
11
dashboard-ui/bower_components/hls.js/.bower.json
vendored
11
dashboard-ui/bower_components/hls.js/.bower.json
vendored
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hls.js",
|
"name": "hls.js",
|
||||||
"version": "0.5.7",
|
"version": "0.5.8",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||||
"homepage": "https://github.com/dailymotion/hls.js",
|
"homepage": "https://github.com/dailymotion/hls.js",
|
||||||
@ -16,14 +16,13 @@
|
|||||||
"test",
|
"test",
|
||||||
"tests"
|
"tests"
|
||||||
],
|
],
|
||||||
"_release": "0.5.7",
|
"_release": "0.5.8",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v0.5.7",
|
"tag": "v0.5.8",
|
||||||
"commit": "448de529aa48dd7e32d639f265995c51f6dd22f5"
|
"commit": "688cec5b83fc596fb91944ad4934ae84ee40abb9"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/dailymotion/hls.js.git",
|
"_source": "git://github.com/dailymotion/hls.js.git",
|
||||||
"_target": "~0.5.7",
|
"_target": "~0.5.7",
|
||||||
"_originalSource": "dailymotion/hls.js",
|
"_originalSource": "dailymotion/hls.js"
|
||||||
"_direct": true
|
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hls.js",
|
"name": "hls.js",
|
||||||
"version": "0.5.7",
|
"version": "0.5.8",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||||
"homepage": "https://github.com/dailymotion/hls.js",
|
"homepage": "https://github.com/dailymotion/hls.js",
|
||||||
|
@ -213,7 +213,7 @@ $(document).ready(function() {
|
|||||||
$('#autoRecoverError').prop( "checked", autoRecoverError );
|
$('#autoRecoverError').prop( "checked", autoRecoverError );
|
||||||
$('#enableWorker').prop( "checked", enableWorker );
|
$('#enableWorker').prop( "checked", enableWorker );
|
||||||
$('#levelCapping').val(levelCapping);
|
$('#levelCapping').val(levelCapping);
|
||||||
$('#defaultAudioCodec').val(defaultAudioCodec);
|
$('#defaultAudioCodec').val(defaultAudioCodec || "undefined");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
@ -937,7 +937,7 @@ function timeRangesToString(r) {
|
|||||||
for (var i = 0; i < sURLVariables.length; i++) {
|
for (var i = 0; i < sURLVariables.length; i++) {
|
||||||
var sParameterName = sURLVariables[i].split('=');
|
var sParameterName = sURLVariables[i].split('=');
|
||||||
if (sParameterName[0] == sParam) {
|
if (sParameterName[0] == sParam) {
|
||||||
return sParameterName[1];
|
return "undefined" == sParameterName[1] ? undefined : sParameterName[1];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return defaultValue;
|
return defaultValue;
|
||||||
|
@ -8055,7 +8055,6 @@ var XhrLoader = function () {
|
|||||||
this.timeout = timeout;
|
this.timeout = timeout;
|
||||||
this.maxRetry = maxRetry;
|
this.maxRetry = maxRetry;
|
||||||
this.retryDelay = retryDelay;
|
this.retryDelay = retryDelay;
|
||||||
this.timeoutHandle = window.setTimeout(this.loadtimeout.bind(this), timeout);
|
|
||||||
this.loadInternal();
|
this.loadInternal();
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
@ -8082,6 +8081,7 @@ var XhrLoader = function () {
|
|||||||
if (this.xhrSetup) {
|
if (this.xhrSetup) {
|
||||||
this.xhrSetup(xhr, this.url);
|
this.xhrSetup(xhr, this.url);
|
||||||
}
|
}
|
||||||
|
this.timeoutHandle = window.setTimeout(this.loadtimeout.bind(this), this.timeout);
|
||||||
xhr.send();
|
xhr.send();
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hls.js",
|
"name": "hls.js",
|
||||||
"version": "0.5.7",
|
"version": "0.5.8",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||||
"homepage": "https://github.com/dailymotion/hls.js",
|
"homepage": "https://github.com/dailymotion/hls.js",
|
||||||
|
@ -43,7 +43,6 @@ class XhrLoader {
|
|||||||
this.timeout = timeout;
|
this.timeout = timeout;
|
||||||
this.maxRetry = maxRetry;
|
this.maxRetry = maxRetry;
|
||||||
this.retryDelay = retryDelay;
|
this.retryDelay = retryDelay;
|
||||||
this.timeoutHandle = window.setTimeout(this.loadtimeout.bind(this), timeout);
|
|
||||||
this.loadInternal();
|
this.loadInternal();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -69,6 +68,7 @@ class XhrLoader {
|
|||||||
if (this.xhrSetup) {
|
if (this.xhrSetup) {
|
||||||
this.xhrSetup(xhr, this.url);
|
this.xhrSetup(xhr, this.url);
|
||||||
}
|
}
|
||||||
|
this.timeoutHandle = window.setTimeout(this.loadtimeout.bind(this), this.timeout);
|
||||||
xhr.send();
|
xhr.send();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,14 +31,14 @@
|
|||||||
"web-component-tester": "*",
|
"web-component-tester": "*",
|
||||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/polymerelements/iron-icon",
|
"homepage": "https://github.com/PolymerElements/iron-icon",
|
||||||
"_release": "1.0.7",
|
"_release": "1.0.7",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.0.7",
|
"tag": "v1.0.7",
|
||||||
"commit": "6f4d152dc3998a6cc12a5a585a654f893dc99381"
|
"commit": "6f4d152dc3998a6cc12a5a585a654f893dc99381"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymerelements/iron-icon.git",
|
"_source": "git://github.com/PolymerElements/iron-icon.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "polymerelements/iron-icon"
|
"_originalSource": "PolymerElements/iron-icon"
|
||||||
}
|
}
|
@ -41,7 +41,7 @@
|
|||||||
"tag": "v1.1.3",
|
"tag": "v1.1.3",
|
||||||
"commit": "c13869b57a9464dfc3a1f26e89858f8be37e7441"
|
"commit": "c13869b57a9464dfc3a1f26e89858f8be37e7441"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymerelements/iron-icons.git",
|
"_source": "git://github.com/PolymerElements/iron-icons.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "polymerelements/iron-icons"
|
"_originalSource": "PolymerElements/iron-icons"
|
||||||
}
|
}
|
@ -36,14 +36,14 @@
|
|||||||
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0"
|
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0"
|
||||||
},
|
},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"homepage": "https://github.com/polymerelements/paper-icon-button",
|
"homepage": "https://github.com/PolymerElements/paper-icon-button",
|
||||||
"_release": "1.0.6",
|
"_release": "1.0.6",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.0.6",
|
"tag": "v1.0.6",
|
||||||
"commit": "35347d81939093cd2abe2783ac1b17fa57b7b303"
|
"commit": "35347d81939093cd2abe2783ac1b17fa57b7b303"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymerelements/paper-icon-button.git",
|
"_source": "git://github.com/PolymerElements/paper-icon-button.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "polymerelements/paper-icon-button"
|
"_originalSource": "PolymerElements/paper-icon-button"
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user