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

fix flex image on IE

This commit is contained in:
Luke Pulverenti 2015-10-16 15:57:03 -04:00
parent 81edf6ccd9
commit 3dbde84cda

View file

@ -305,9 +305,7 @@
html += '<div class="cardImage editLibrary" style="cursor:pointer;background-image:url(\'' + imgUrl + '\');"></div>'; html += '<div class="cardImage editLibrary" style="cursor:pointer;background-image:url(\'' + imgUrl + '\');"></div>';
} else if (!virtualFolder.showNameWithIcon) { } else if (!virtualFolder.showNameWithIcon) {
html += '<div class="cardImage editLibrary iconCardImage" style="cursor:pointer;">'; html += '<div class="cardImage editLibrary iconCardImage" style="cursor:pointer;">';
html += '<div>';
html += '<iron-icon icon="' + (virtualFolder.icon || getIcon(virtualFolder.CollectionType)) + '"></iron-icon>'; html += '<iron-icon icon="' + (virtualFolder.icon || getIcon(virtualFolder.CollectionType)) + '"></iron-icon>';
html += "</div>";
html += '</div>'; html += '</div>';
} }