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

finish paper-fab removal

This commit is contained in:
Luke Pulverenti 2016-08-05 16:34:56 -04:00
parent e00fbec2a8
commit 0b0248cd60
4 changed files with 48 additions and 45 deletions

View file

@ -1,4 +1,4 @@
define(['dialogHelper', 'jQuery', 'emby-input', 'emby-select', 'paper-fab', 'paper-item-body', 'paper-icon-item', 'paper-icon-button-light'], function (dialogHelper, $) {
define(['dialogHelper', 'jQuery', 'emby-input', 'emby-select', 'paper-icon-button-light', 'listViewStyle'], function (dialogHelper, $) {
var currentDeferred;
var hasChanges;
@ -116,17 +116,17 @@
var html = '';
html += '<paper-icon-item role="menuitem" class="lnkPath">';
html += '<div class="listItem lnkPath">';
html += '<paper-fab mini style="background:#52B54B;" icon="folder" item-icon></paper-fab>';
html += '<i class="listItemIcon md-icon">folder</i>';
html += '<paper-item-body>';
html += path;
html += '</paper-item-body>';
html += '<div class="listItemBody">';
html += '<div class="listItemBodyText">' + path + '</div>';
html += '</div>';
html += '<button is="paper-icon-button-light"" class="btnRemovePath" data-index="' + index + '"><iron-icon icon="remove-circle"></iron-icon></button>';
html += '<button is="paper-icon-button-light"" class="btnRemovePath" data-index="' + index + '"><i class="md-icon">remove_circle</i></button>';
html += '</paper-icon-item>';
html += '</div>';
return html;
}