1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

remove some paper inputs

This commit is contained in:
Luke Pulverenti 2016-08-21 14:33:17 -04:00
parent faf5fe7af6
commit 7af088def3
10 changed files with 107 additions and 118 deletions

View file

@ -3,9 +3,9 @@
function load(page, device, capabilities) {
if (capabilities.SupportsContentUploading) {
$('#fldCameraUploadPath', page).show();
$('#fldCameraUploadPath', page).removeClass('hide');
} else {
$('#fldCameraUploadPath', page).hide();
$('#fldCameraUploadPath', page).addClass('hide');
}
$('#txtCustomName', page).val(device.CustomName || '');

View file

@ -1393,13 +1393,8 @@ var AppInfo = {};
define("cryptojs-sha1", [sha1Path]);
define("cryptojs-md5", [md5Path]);
define("paper-button", ["html!" + bowerPath + "/paper-button/paper-button.html"]);
define("paper-icon-button", ["html!" + bowerPath + "/paper-icon-button/paper-icon-button.html"]);
define("paper-checkbox", ["html!" + bowerPath + "/paper-checkbox/paper-checkbox.html"]);
define("paper-collapse-item", ["html!" + bowerPath + "/paper-collapse-item/paper-collapse-item.html"]);
define("jstree", [bowerPath + "/jstree/dist/jstree", "css!thirdparty/jstree/themes/default/style.min.css"]);
define("dashboardcss", ['css!css/dashboard']);