mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update recording layouts
This commit is contained in:
parent
47c67da9a5
commit
633e2f0222
54 changed files with 375 additions and 83 deletions
|
@ -223,22 +223,20 @@
|
|||
html += plugin.name;
|
||||
html += "</div>";
|
||||
|
||||
if (!plugin.isExternal) {
|
||||
html += "<div class='cardText' style='display:flex;align-items:center;'>";
|
||||
// html += "<div class='cardText' style='display:flex;align-items:center;'>";
|
||||
|
||||
if (plugin.avgRating) {
|
||||
html += '<i class="md-icon" style="color:#cc3333;margin-right:.25em;">star</i>';
|
||||
html += plugin.avgRating.toFixed(1);
|
||||
}
|
||||
// if (plugin.avgRating) {
|
||||
// html += '<i class="md-icon" style="color:#cc3333;margin-right:.25em;">star</i>';
|
||||
// html += plugin.avgRating.toFixed(1);
|
||||
// }
|
||||
|
||||
if (plugin.totalRatings) {
|
||||
html += "<div style='margin-left:.5em;'>";
|
||||
html += " " + Globalize.translate('LabelNumberReviews').replace("{0}", plugin.totalRatings);
|
||||
}
|
||||
html += "</div>";
|
||||
// if (plugin.totalRatings) {
|
||||
// html += "<div style='margin-left:.5em;'>";
|
||||
// html += " " + Globalize.translate('LabelNumberReviews').replace("{0}", plugin.totalRatings);
|
||||
// }
|
||||
// html += "</div>";
|
||||
|
||||
html += "</div>";
|
||||
}
|
||||
// html += "</div>";
|
||||
|
||||
var installedPlugin = plugin.isApp ? null : installedPlugins.filter(function (ip) {
|
||||
return ip.Id == plugin.guid;
|
||||
|
|
|
@ -1688,7 +1688,7 @@ var AppInfo = {};
|
|||
define("videorenderer", ["cordova/android/vlcplayer"]);
|
||||
}
|
||||
else if (Dashboard.isRunningInCordova() && browserInfo.safari) {
|
||||
define("audiorenderer", ["cordova/audioplayer"]);
|
||||
define("audiorenderer", ["cordova/ios/audioplayer"]);
|
||||
define("videorenderer", ["scripts/htmlmediarenderer"]);
|
||||
}
|
||||
else {
|
||||
|
@ -2694,12 +2694,9 @@ var AppInfo = {};
|
|||
postInitDependencies.push('cordova/android/mediasession');
|
||||
postInitDependencies.push('cordova/android/chromecast');
|
||||
|
||||
} else {
|
||||
postInitDependencies.push('cordova/volume');
|
||||
}
|
||||
|
||||
if (browserInfo.safari) {
|
||||
} else if (browserInfo.safari) {
|
||||
|
||||
postInitDependencies.push('cordova/ios/volume');
|
||||
postInitDependencies.push('cordova/ios/chromecast');
|
||||
postInitDependencies.push('cordova/ios/orientation');
|
||||
postInitDependencies.push('cordova/ios/remotecontrols');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue