1
0
Fork 0
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:
Luke Pulverenti 2016-09-26 14:59:18 -04:00
parent 47c67da9a5
commit 633e2f0222
54 changed files with 375 additions and 83 deletions

View file

@ -1,11 +1,9 @@
define(['dialogHelper', 'jQuery', 'emby-input', 'emby-button', 'emby-collapse', 'emby-checkbox', 'paper-icon-button-light', 'formDialogStyle'], function (dialogHelper, $) {
define(['dialogHelper', 'jQuery', 'emby-input', 'emby-button', 'emby-checkbox', 'paper-icon-button-light', 'formDialogStyle'], function (dialogHelper, $) {
function renderLibrarySharingList(context, result) {
var folderHtml = '';
folderHtml += '<div class="checkboxList">';
folderHtml += result.Items.map(function (i) {
var currentHtml = '';
@ -18,8 +16,6 @@
}).join('');
folderHtml += '</div>';
context.querySelector('.librarySharingList').innerHTML = folderHtml;
}