mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
updated nuget
This commit is contained in:
parent
4e815ceaf0
commit
4b951f485f
4 changed files with 16 additions and 35 deletions
|
@ -25,14 +25,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-meta",
|
"homepage": "https://github.com/polymerelements/iron-meta",
|
||||||
"_release": "1.0.3",
|
"_release": "1.0.3",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.0.3",
|
"tag": "v1.0.3",
|
||||||
"commit": "91529259262b0d8f33fed44bc3fd47aedf35cb04"
|
"commit": "91529259262b0d8f33fed44bc3fd47aedf35cb04"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/PolymerElements/iron-meta.git",
|
"_source": "git://github.com/polymerelements/iron-meta.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "PolymerElements/iron-meta"
|
"_originalSource": "polymerelements/iron-meta"
|
||||||
}
|
}
|
|
@ -34,7 +34,7 @@
|
||||||
"tag": "v1.0.7",
|
"tag": "v1.0.7",
|
||||||
"commit": "c65f5ce6b898bb756fca35cedaa53c3e8011abeb"
|
"commit": "c65f5ce6b898bb756fca35cedaa53c3e8011abeb"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/PolymerElements/paper-styles.git",
|
"_source": "git://github.com/polymerelements/paper-styles.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "PolymerElements/paper-styles"
|
"_originalSource": "polymerelements/paper-styles"
|
||||||
}
|
}
|
|
@ -509,18 +509,7 @@
|
||||||
|
|
||||||
self.canPlayNativeHls = function () {
|
self.canPlayNativeHls = function () {
|
||||||
|
|
||||||
// Don't use HLS on android 4.x, regardless of what the browser reports
|
if (AppInfo.isNativeApp) {
|
||||||
//if ($.browser.android) {
|
|
||||||
// var agent = navigator.userAgent.toLowerCase();
|
|
||||||
|
|
||||||
// for (var i = 0; i <= 4; i++) {
|
|
||||||
// if (agent.indexOf('android 4.' + i) != -1) {
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
|
|
||||||
if ($.browser.android && AppInfo.isNativeApp) {
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -541,21 +530,9 @@
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($.browser.chrome) {
|
|
||||||
|
|
||||||
// viblast can help us here
|
// viblast can help us here
|
||||||
//return true;
|
//return true;
|
||||||
return window.MediaSource != null;
|
return window.MediaSource != null;
|
||||||
}
|
|
||||||
|
|
||||||
if ($.browser.msie) {
|
|
||||||
|
|
||||||
// viblast can help us here
|
|
||||||
//return true;
|
|
||||||
return window.MediaSource != null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
self.changeStream = function (ticks, params) {
|
self.changeStream = function (ticks, params) {
|
||||||
|
|
|
@ -327,10 +327,14 @@
|
||||||
|
|
||||||
$('a', elem).on('click', function () {
|
$('a', elem).on('click', function () {
|
||||||
|
|
||||||
var card = $(this).parents('.card');
|
var card = this;
|
||||||
var textElem = $('.cardText', card);
|
|
||||||
|
|
||||||
var text = textElem.html();
|
if (!this.classList.contains('card')) {
|
||||||
|
card = $(this).parents('.card')[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
var textElem = $('.cardText', card);
|
||||||
|
var text = textElem.text();
|
||||||
|
|
||||||
LibraryMenu.setTitle(text);
|
LibraryMenu.setTitle(text);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue