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

store chapter image date modified

This commit is contained in:
Luke Pulverenti 2016-07-06 13:44:44 -04:00
parent 8c175cbbbd
commit 6e90fe1460
8 changed files with 38 additions and 22 deletions

View file

@ -24,8 +24,9 @@ define(['focusManager', 'css!./style.css', 'clearButtonStyle', 'paper-icon-butto
html += '<div class="alphaPickerRow">';
if (options.mode == 'keyboard') {
// space_bar icon
html += '<button data-value=" " is="paper-icon-button-light" class="alphaPickerButton autoSize">\
<i class="md-icon">space_bar</i>\
<i class="md-icon">&#xE256;</i>\
</button>';
} else {
letters = ['#'];
@ -36,8 +37,9 @@ define(['focusManager', 'css!./style.css', 'clearButtonStyle', 'paper-icon-butto
html += letters.map(getLetterButton).join('');
if (options.mode == 'keyboard') {
// backspace icon
html += '<button data-value="backspace" is="paper-icon-button-light" class="alphaPickerButton autoSize">\
<i class="md-icon">backspace</i>\
<i class="md-icon">&#xE14A;</i>\
</button>';
html += '</div>';