mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add tv service status reporting
This commit is contained in:
parent
e768e496ed
commit
518003518b
8 changed files with 153 additions and 55 deletions
|
@ -852,9 +852,9 @@ a.itemTag:hover {
|
||||||
right: 5px;
|
right: 5px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
width: 26px;
|
width: 24px;
|
||||||
height: 21px;
|
height: 19px;
|
||||||
padding-top: 5px;
|
padding-top: 3px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: rgb(82, 181, 75);
|
background: rgb(82, 181, 75);
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.posterItemOverlayInner {
|
.posterItemOverlayInner {
|
||||||
padding: 15px;
|
padding: 15px 13px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.smallBackdropPosterItem, .smallPosterItem {
|
.smallBackdropPosterItem, .smallPosterItem {
|
||||||
|
|
|
@ -142,7 +142,7 @@
|
||||||
<button id="btnPlay" type="button" data-icon="play" data-inline="true" data-mini="true">Play</button>
|
<button id="btnPlay" type="button" data-icon="play" data-inline="true" data-mini="true">Play</button>
|
||||||
</span>
|
</span>
|
||||||
<span id="trailerButtonContainer">
|
<span id="trailerButtonContainer">
|
||||||
<button id="btnPlayTrailer" type="button" data-icon="play" data-inline="true" data-mini="true">Trailer</button>
|
<button id="btnPlayTrailer" type="button" data-icon="video" data-inline="true" data-mini="true">Trailer</button>
|
||||||
</span>
|
</span>
|
||||||
<span id="playExternalButtonContainer" style="display: none;">
|
<span id="playExternalButtonContainer" style="display: none;">
|
||||||
<a id="btnPlayExternal" data-role="button" data-icon="play" data-inline="true" data-mini="true" href="#" target="_blank">Play</a>
|
<a id="btnPlayExternal" data-role="button" data-icon="play" data-inline="true" data-mini="true" href="#" target="_blank">Play</a>
|
||||||
|
|
|
@ -475,7 +475,7 @@
|
||||||
borderless: item.Type == "Game"
|
borderless: item.Type == "Game"
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#similarContent', page).html(html);
|
$('#similarContent', page).html(html).createPosterItemHoverMenu();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1498,7 +1498,7 @@
|
||||||
return html;
|
return html;
|
||||||
},
|
},
|
||||||
|
|
||||||
getRatingHtml: function (item) {
|
getRatingHtml: function (item, metascore) {
|
||||||
|
|
||||||
var html = "";
|
var html = "";
|
||||||
|
|
||||||
|
@ -1535,7 +1535,7 @@
|
||||||
html += '<div class="criticRating">' + item.CriticRating + '%</div>';
|
html += '<div class="criticRating">' + item.CriticRating + '%</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.Metascore) {
|
if (item.Metascore && metascore !== false) {
|
||||||
|
|
||||||
if (item.Metascore >= 60) {
|
if (item.Metascore >= 60) {
|
||||||
html += '<div class="metascore metascorehigh" title="Metascore">' + item.Metascore + '</div>';
|
html += '<div class="metascore metascorehigh" title="Metascore">' + item.Metascore + '</div>';
|
||||||
|
@ -2508,7 +2508,7 @@
|
||||||
html += '<h3 style="margin: .5em 0;padding:0 1em;font-weight:normal;">' + LibraryBrowser.getPosterViewDisplayName(item, true) + '</h3>';
|
html += '<h3 style="margin: .5em 0;padding:0 1em;font-weight:normal;">' + LibraryBrowser.getPosterViewDisplayName(item, true) + '</h3>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
html += '<div style="padding: 1em;">';
|
html += '<div style="padding: .8em 1em;">';
|
||||||
html += getOverlayHtml(item);
|
html += getOverlayHtml(item);
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
|
@ -2645,7 +2645,7 @@
|
||||||
|
|
||||||
var elem = this;
|
var elem = this;
|
||||||
|
|
||||||
$(this).animate({ "height": "0" }, function () {
|
$(this).animate({ "height": "0" }, "fast", function () {
|
||||||
|
|
||||||
$(elem).hide();
|
$(elem).hide();
|
||||||
|
|
||||||
|
@ -2660,46 +2660,135 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function getOverlayHtml(item) {
|
function getOverlayHtml(item, currentUser, posterItem) {
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
html += '<div class="posterItemOverlayInner">';
|
html += '<div class="posterItemOverlayInner">';
|
||||||
|
|
||||||
html += '<div style="font-weight:bold;margin-bottom:1.5em;">';
|
var isSmallItem = $(posterItem).hasClass('smallBackdropPosterItem');
|
||||||
html += LibraryBrowser.getPosterViewDisplayName(item, true);
|
var isPortrait = $(posterItem).hasClass('portraitPosterItem');
|
||||||
|
|
||||||
|
var parentName = isSmallItem || isPortrait ? null : item.SeriesName;
|
||||||
|
var name = LibraryBrowser.getPosterViewDisplayName(item, true);
|
||||||
|
|
||||||
|
html += '<div style="font-weight:bold;margin-bottom:1em;">';
|
||||||
|
var logoHeight = isPortrait || isSmallItem ? 20 : 22;
|
||||||
|
var maxLogoWidth = isPortrait ? 100 : 200;
|
||||||
|
var imgUrl;
|
||||||
|
|
||||||
|
if (parentName && item.ParentLogoItemId) {
|
||||||
|
|
||||||
|
imgUrl = ApiClient.getImageUrl(item.ParentLogoItemId, {
|
||||||
|
height: logoHeight * 2,
|
||||||
|
type: 'logo',
|
||||||
|
tag: item.ParentLogoImageTag
|
||||||
|
});
|
||||||
|
|
||||||
|
html += '<img src="' + imgUrl + '" style="max-height:' + logoHeight + 'px;max-width:' + maxLogoWidth + 'px;" />';
|
||||||
|
|
||||||
|
}
|
||||||
|
else if (item.ImageTags.Logo) {
|
||||||
|
|
||||||
|
imgUrl = LibraryBrowser.getImageUrl(item, 'Logo', 0, {
|
||||||
|
height: logoHeight * 2,
|
||||||
|
});
|
||||||
|
|
||||||
|
html += '<img src="' + imgUrl + '" style="max-height:' + logoHeight + 'px;max-width:' + maxLogoWidth + 'px;" />';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
html += parentName || name;
|
||||||
|
}
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
//html += '<p class="itemMiscInfo">';
|
if (parentName) {
|
||||||
//html += LibraryBrowser.getMiscInfoHtml(item);
|
|
||||||
//html += '</p>';
|
|
||||||
|
|
||||||
html += '<p>';
|
html += '<p>';
|
||||||
html += '<span class="itemCommunityRating">';
|
html += name;
|
||||||
html += LibraryBrowser.getRatingHtml(item);
|
|
||||||
html += '</span>';
|
|
||||||
html += '</p>';
|
html += '</p>';
|
||||||
|
} else if (!isSmallItem) {
|
||||||
|
html += '<p class="itemMiscInfo" style="white-space:nowrap;">';
|
||||||
|
html += LibraryBrowser.getMiscInfoHtml(item);
|
||||||
|
html += '</p>';
|
||||||
|
}
|
||||||
|
|
||||||
html += '<p>';
|
html += '<p style="margin:.75em 0;">';
|
||||||
html += '<span class="userDataIcons">';
|
html += '<span class="itemCommunityRating">';
|
||||||
|
html += LibraryBrowser.getRatingHtml(item, false);
|
||||||
|
html += '</span>';
|
||||||
|
|
||||||
|
if (isPortrait) {
|
||||||
|
html += '<span class="userDataIcons" style="margin-left:0;display:block;margin:1.25em 0;">';
|
||||||
html += LibraryBrowser.getUserDataIconsHtml(item);
|
html += LibraryBrowser.getUserDataIconsHtml(item);
|
||||||
html += '</span>';
|
html += '</span>';
|
||||||
|
} else {
|
||||||
|
html += '<span class="userDataIcons" style="margin-left:1em;">';
|
||||||
|
html += LibraryBrowser.getUserDataIconsHtml(item);
|
||||||
|
html += '</span>';
|
||||||
|
}
|
||||||
html += '</p>';
|
html += '</p>';
|
||||||
|
|
||||||
//html += '<p class="itemOverlayHtml">';
|
//html += '<p class="itemOverlayHtml">';
|
||||||
//html += (item.OverviewHtml || item.Overview || '');
|
//html += (item.OverviewHtml || item.Overview || '');
|
||||||
//html += '</p>';
|
//html += '</p>';
|
||||||
|
|
||||||
html += '<button type="button" data-mini="true" data-inline="true" data-icon="play" data-iconpos="notext">Play</button>';
|
html += '<div>';
|
||||||
html += '<button type="button" data-mini="true" data-inline="true" data-icon="video" data-iconpos="notext">Play</button>';
|
|
||||||
html += '<button type="button" data-mini="true" data-inline="true" data-icon="remote" data-iconpos="notext">Play</button>';
|
var buttonMargin = isPortrait ? "margin:0 7px 0 0;" : "margin:0 10px 0 0;";
|
||||||
html += '<button type="button" data-mini="true" data-inline="true" data-icon="edit" data-iconpos="notext">Play</button>';
|
|
||||||
|
var buttonCount = 0;
|
||||||
|
|
||||||
|
if (MediaPlayer.canPlay(item)) {
|
||||||
|
html += '<button type="button" data-mini="true" data-inline="true" data-icon="play" data-iconpos="notext" title="Play" onclick="MediaPlayer.playById(\'' + item.Id + '\');return false;" style="' + buttonMargin + '">Play</button>';
|
||||||
|
buttonCount++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (item.LocalTrailerCount) {
|
||||||
|
html += '<button type="button" data-mini="true" data-inline="true" data-icon="video" data-iconpos="notext" class="btnPlayTrailer" data-itemid="' + item.Id + '" title="Play Trailer" style="' + buttonMargin + '">Play Trailer</button>';
|
||||||
|
buttonCount++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentUser.Configuration.IsAdministrator) {
|
||||||
|
html += '<button type="button" data-mini="true" data-inline="true" data-icon="edit" data-iconpos="notext" title="Edit" onclick="Dashboard.navigate(\'edititemmetadata.html?id=' + item.Id + '\');return false;" style="' + buttonMargin + '">Edit</button>';
|
||||||
|
buttonCount++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isPortrait || buttonCount < 3) {
|
||||||
|
html += '<button type="button" data-mini="true" data-inline="true" data-icon="wireless" data-iconpos="notext" title="Send to Device" class="btnRemoteControl" data-itemid="' + item.Id + '" style="' + buttonMargin + '">Send to Device</button>';
|
||||||
|
}
|
||||||
|
|
||||||
|
html += '</div>';
|
||||||
|
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
return html;
|
return html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function onTrailerButtonClick() {
|
||||||
|
|
||||||
|
var id = this.getAttribute('data-itemid');
|
||||||
|
|
||||||
|
ApiClient.getLocalTrailers(Dashboard.getCurrentUserId(), id).done(function (trailers) {
|
||||||
|
MediaPlayer.play(trailers);
|
||||||
|
});
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function onRemoteControlButtonClick() {
|
||||||
|
|
||||||
|
var id = this.getAttribute('data-itemid');
|
||||||
|
|
||||||
|
ApiClient.getItem(Dashboard.getCurrentUserId(), id).done(function (item) {
|
||||||
|
|
||||||
|
RemoteControl.showMenuForItem({
|
||||||
|
item: item
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
$.fn.createPosterItemHoverMenu = function () {
|
$.fn.createPosterItemHoverMenu = function () {
|
||||||
|
|
||||||
function onShowTimerExpired(elem) {
|
function onShowTimerExpired(elem) {
|
||||||
|
@ -2707,16 +2796,25 @@
|
||||||
var innerElem = $('.posterItemOverlayTarget', elem);
|
var innerElem = $('.posterItemOverlayTarget', elem);
|
||||||
var id = elem.getAttribute('data-itemid');
|
var id = elem.getAttribute('data-itemid');
|
||||||
|
|
||||||
ApiClient.getItem(Dashboard.getCurrentUserId(), id).done(function (item) {
|
var promise1 = ApiClient.getItem(Dashboard.getCurrentUserId(), id);
|
||||||
|
var promise2 = Dashboard.getCurrentUser();
|
||||||
|
|
||||||
innerElem.html(getOverlayHtml(item)).trigger('create');
|
$.when(promise1, promise2).done(function (response1, response2) {
|
||||||
|
|
||||||
|
var item = response1[0];
|
||||||
|
var user = response2[0];
|
||||||
|
|
||||||
|
innerElem.html(getOverlayHtml(item, user, elem)).trigger('create');
|
||||||
|
|
||||||
|
$('.btnPlayTrailer', innerElem).on('click', onTrailerButtonClick);
|
||||||
|
$('.btnRemoteControl', innerElem).on('click', onRemoteControlButtonClick);
|
||||||
});
|
});
|
||||||
|
|
||||||
innerElem.show().each(function () {
|
innerElem.show().each(function () {
|
||||||
|
|
||||||
this.style.height = 0;
|
this.style.height = 0;
|
||||||
|
|
||||||
}).animate({ "height": "100%" });
|
}).animate({ "height": "100%" }, "fast");
|
||||||
}
|
}
|
||||||
|
|
||||||
function onHoverIn() {
|
function onHoverIn() {
|
||||||
|
@ -2732,7 +2830,7 @@
|
||||||
|
|
||||||
onShowTimerExpired(elem);
|
onShowTimerExpired(elem);
|
||||||
|
|
||||||
}, 600);
|
}, 800);
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://hacks.mozilla.org/2013/04/detecting-touch-its-the-why-not-the-how/
|
// https://hacks.mozilla.org/2013/04/detecting-touch-its-the-why-not-the-how/
|
||||||
|
@ -2742,8 +2840,8 @@
|
||||||
running on touch-capable device */
|
running on touch-capable device */
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
return this;
|
|
||||||
return this.on('mouseenter', '.posterItem', onHoverIn).on('mouseleave', '.posterItem', onHoverOut);
|
return this.on('mouseenter', '.backdropPosterItem,.smallBackdropPosterItem,.portraitPosterItem', onHoverIn).on('mouseleave', '.backdropPosterItem,.smallBackdropPosterItem,.portraitPosterItem', onHoverOut);
|
||||||
};
|
};
|
||||||
|
|
||||||
})(jQuery, document, window);
|
})(jQuery, document, window);
|
|
@ -993,6 +993,9 @@
|
||||||
|
|
||||||
self.canPlay = function (item) {
|
self.canPlay = function (item) {
|
||||||
|
|
||||||
|
if (item.LocationType == "Virtual") {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
if (item.Type == "MusicAlbum" || item.Type == "MusicArtist" || item.Type == "MusicGenre") {
|
if (item.Type == "MusicAlbum" || item.Type == "MusicArtist" || item.Type == "MusicGenre") {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,12 +64,12 @@
|
||||||
|
|
||||||
var item = options.item;
|
var item = options.item;
|
||||||
|
|
||||||
var html = '<div data-role="popup" id="remoteControlFlyout" data-transition="slidefade" data-theme="a">';
|
var html = '<div data-role="popup" id="remoteControlFlyout" data-transition="slidedown" data-theme="a">';
|
||||||
|
|
||||||
html += '<a href="#" data-rel="back" data-role="button" data-icon="delete" data-iconpos="notext" class="ui-btn-right" data-theme="b">Close</a>';
|
html += '<a href="#" data-rel="back" data-role="button" data-icon="delete" data-iconpos="notext" class="ui-btn-right" data-theme="b">Close</a>';
|
||||||
|
|
||||||
html += '<div class="ui-bar-b" style="text-align:center;">';
|
html += '<div class="ui-bar-b" style="text-align:center;">';
|
||||||
html += '<div style="margin:.5em 0;">Remote Control</div>';
|
html += '<div style="margin:.5em 0;">Send to Device</div>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
html += '<div style="padding: 1em;">';
|
html += '<div style="padding: 1em;">';
|
||||||
|
@ -385,7 +385,6 @@
|
||||||
function renderPlayFromOptions(elem, item) {
|
function renderPlayFromOptions(elem, item) {
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
var html = '';
|
|
||||||
|
|
||||||
html += '<h4 style="margin: 1em 0 .5em;">Play from scene</h4>';
|
html += '<h4 style="margin: 1em 0 .5em;">Play from scene</h4>';
|
||||||
|
|
||||||
|
@ -455,33 +454,31 @@
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
html += '<div style="margin-top:0;">';
|
html += '<div style="margin-top:0;">';
|
||||||
html += '<label for="selectCommand">Select command</label>';
|
html += '<label for="selectCommand">Send:</label>';
|
||||||
html += '<select id="selectCommand" data-mini="true">';
|
html += '<select id="selectCommand" data-mini="true">';
|
||||||
|
|
||||||
if (item.LocationType == 'Virtual') {
|
var mediaLabel = item.MediaType || 'Media';
|
||||||
html += '<option value="Play" selected>Browse</label>';
|
|
||||||
} else {
|
html += '<option value="Play" selected>' + mediaLabel + '</label>';
|
||||||
html += '<option value="Play" selected>Play</label>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (item.Chapters && item.Chapters.length) {
|
if (item.Chapters && item.Chapters.length) {
|
||||||
html += '<option value="PlayFromChapter">Play from scene</label>';
|
html += '<option value="PlayFromChapter">Scene</label>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.LocalTrailerCount) {
|
if (item.LocalTrailerCount) {
|
||||||
html += '<option value="Trailer">Play trailer</label>';
|
html += '<option value="Trailer">Trailer</label>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.SpecialFeatureCount) {
|
if (item.SpecialFeatureCount) {
|
||||||
html += '<option value="SpecialFeature">Play special feature</label>';
|
html += '<option value="SpecialFeature">Special feature</label>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.themeSongs) {
|
if (options.themeSongs) {
|
||||||
html += '<option value="ThemeSong">Play theme song</label>';
|
html += '<option value="ThemeSong">Theme song</label>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.themeVideos) {
|
if (options.themeVideos) {
|
||||||
html += '<option value="ThemeVideo">Play theme video</label>';
|
html += '<option value="ThemeVideo">Theme video</label>';
|
||||||
}
|
}
|
||||||
|
|
||||||
html += '</select>';
|
html += '</select>';
|
||||||
|
@ -632,7 +629,7 @@
|
||||||
|
|
||||||
function showMenu(sessions, options) {
|
function showMenu(sessions, options) {
|
||||||
|
|
||||||
var html = '<div data-role="popup" data-transition="slidefade" id="remoteControlFlyout" data-theme="a">';
|
var html = '<div data-role="popup" data-transition="slidedown" id="remoteControlFlyout" data-theme="a">';
|
||||||
|
|
||||||
html += '<a href="#" data-rel="back" data-role="button" data-icon="delete" data-iconpos="notext" class="ui-btn-right" data-theme="b">Close</a>';
|
html += '<a href="#" data-rel="back" data-role="button" data-icon="delete" data-iconpos="notext" class="ui-btn-right" data-theme="b">Close</a>';
|
||||||
|
|
||||||
|
|
|
@ -1355,12 +1355,12 @@ $(function () {
|
||||||
footerHtml += '<button onclick="MediaPlayer.showChaptersFlyout();" id="chaptersButton" class="mediaButton chaptersButton" title="Scenes" type="button" data-icon="video" data-iconpos="notext" data-inline="true">Scenes</button>';
|
footerHtml += '<button onclick="MediaPlayer.showChaptersFlyout();" id="chaptersButton" class="mediaButton chaptersButton" title="Scenes" type="button" data-icon="video" data-iconpos="notext" data-inline="true">Scenes</button>';
|
||||||
footerHtml += '<div class="mediaFlyoutContainer"><div id="chaptersFlyout" style="display:none;" class="mediaPlayerFlyout chaptersFlyout"></div></div>';
|
footerHtml += '<div class="mediaFlyoutContainer"><div id="chaptersFlyout" style="display:none;" class="mediaPlayerFlyout chaptersFlyout"></div></div>';
|
||||||
|
|
||||||
footerHtml += '<button onclick="MediaPlayer.showChannelsFlyout();" id="channelsButton" class="mediaButton channelsButton" title="Channels" type="button" data-icon="tv" data-iconpos="notext" data-inline="true">Channels</button>';
|
|
||||||
footerHtml += '<div class="mediaFlyoutContainer"><div id="channelsFlyout" style="display:none;" class="mediaPlayerFlyout channelsFlyout"></div></div>';
|
|
||||||
|
|
||||||
footerHtml += '<button onclick="MediaPlayer.toggleFullscreen();" id="fullscreenButton" class="mediaButton fullscreenButton" title="Fullscreen" type="button" data-icon="action" data-iconpos="notext" data-inline="true">Fullscreen</button>';
|
footerHtml += '<button onclick="MediaPlayer.toggleFullscreen();" id="fullscreenButton" class="mediaButton fullscreenButton" title="Fullscreen" type="button" data-icon="action" data-iconpos="notext" data-inline="true">Fullscreen</button>';
|
||||||
|
|
||||||
footerHtml += '<button onclick="MediaPlayer.showSendMediaMenu();" id="sendMediaButton" class="mediaButton sendMediaButton" title="Cast" type="button" data-icon="wireless" data-iconpos="notext" data-inline="true">Cast</button>';
|
footerHtml += '<button onclick="MediaPlayer.showChannelsFlyout();" id="channelsButton" class="mediaButton channelsButton" title="TV Channels" type="button" data-icon="tv" data-iconpos="notext" data-inline="true">TV Channels</button>';
|
||||||
|
footerHtml += '<div class="mediaFlyoutContainer"><div id="channelsFlyout" style="display:none;" class="mediaPlayerFlyout channelsFlyout"></div></div>';
|
||||||
|
|
||||||
|
footerHtml += '<button onclick="MediaPlayer.showSendMediaMenu();" id="sendMediaButton" class="mediaButton sendMediaButton" title="Send to Device" type="button" data-icon="wireless" data-iconpos="notext" data-inline="true">Send to Device</button>';
|
||||||
|
|
||||||
footerHtml += '</div>';
|
footerHtml += '</div>';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue