-
\ No newline at end of file
+
diff --git a/src/components/actionsheet/actionsheet.js b/src/components/actionsheet/actionsheet.js
index 46a7cedf1e..d4e6b61c8a 100644
--- a/src/components/actionsheet/actionsheet.js
+++ b/src/components/actionsheet/actionsheet.js
@@ -158,7 +158,7 @@ define(['dialogHelper', 'layoutManager', 'globalize', 'browser', 'dom', 'emby-bu
}
if (layoutManager.tv) {
- html += '';
+ html += '';
}
// If any items have an icon, give them all an icon just to make sure they're all lined up evenly
@@ -357,4 +357,4 @@ define(['dialogHelper', 'layoutManager', 'globalize', 'browser', 'dom', 'emby-bu
return {
show: show
};
-});
\ No newline at end of file
+});
diff --git a/src/components/alphapicker/alphapicker.js b/src/components/alphapicker/alphapicker.js
index ac2ea9e676..b9d31be5dd 100644
--- a/src/components/alphapicker/alphapicker.js
+++ b/src/components/alphapicker/alphapicker.js
@@ -67,8 +67,7 @@ define(['focusManager', 'layoutManager', 'dom', 'css!./style.css', 'paper-icon-b
html += '
';
if (options.mode === 'keyboard') {
- // space_bar icon
- html += '';
+ html += '';
} else {
letters = ['#'];
html += mapLetters(letters, vertical).join('');
@@ -78,8 +77,7 @@ define(['focusManager', 'layoutManager', 'dom', 'css!./style.css', 'paper-icon-b
html += mapLetters(letters, vertical).join('');
if (options.mode === 'keyboard') {
- // backspace icon
- html += '';
+ html += '';
html += '
';
letters = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
@@ -320,4 +318,4 @@ define(['focusManager', 'layoutManager', 'dom', 'css!./style.css', 'paper-icon-b
};
return AlphaPicker;
-});
\ No newline at end of file
+});
diff --git a/src/components/cardbuilder/cardBuilder.js b/src/components/cardbuilder/cardBuilder.js
index 6e9340e1b8..3b7516309c 100644
--- a/src/components/cardbuilder/cardBuilder.js
+++ b/src/components/cardbuilder/cardBuilder.js
@@ -758,7 +758,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
if (isOuterFooter && options.cardLayout && layoutManager.mobile) {
if (options.cardFooterAside !== 'none') {
- html += '';
+ html += '';
}
}
@@ -1315,15 +1315,15 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
var btnCssClass = 'cardOverlayButton cardOverlayButton-br itemAction';
if (options.centerPlayButton) {
- overlayButtons += '';
+ overlayButtons += '';
}
if (overlayPlayButton && !item.IsPlaceHolder && (item.LocationType !== 'Virtual' || !item.MediaType || item.Type === 'Program') && item.Type !== 'Person') {
- overlayButtons += '';
+ overlayButtons += '';
}
if (options.overlayMoreButton) {
- overlayButtons += '';
+ overlayButtons += '';
}
}
@@ -1456,7 +1456,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
var btnCssClass = 'cardOverlayButton cardOverlayButton-hover itemAction paper-icon-button-light';
if (playbackManager.canPlay(item)) {
- html += '';
+ html += '';
}
html += '
';
@@ -1465,7 +1465,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
if (itemHelper.canMarkPlayed(item)) {
require(['emby-playstatebutton']);
- html += '';
+ html += '';
}
if (itemHelper.canRate(item)) {
@@ -1473,10 +1473,10 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
var likes = userData.Likes == null ? '' : userData.Likes;
require(['emby-ratingbutton']);
- html += '';
+ html += '';
}
- html += '';
+ html += '';
html += '
diff --git a/src/components/multiselect/multiselect.js b/src/components/multiselect/multiselect.js
index 8a5858b770..6b2906cb0a 100644
--- a/src/components/multiselect/multiselect.js
+++ b/src/components/multiselect/multiselect.js
@@ -129,7 +129,7 @@ define(["browser", "appStorage", "apphost", "loading", "connectionManager", "glo
html += 'close';
html += '';
- var moreIcon = "";
+ var moreIcon = "more_horiz";
html += '' + moreIcon + '';
selectionCommandsPanel.innerHTML = html;
diff --git a/src/components/nowplayingbar/nowplayingbar.js b/src/components/nowplayingbar/nowplayingbar.js
index d7be482c52..37a1a32f56 100644
--- a/src/components/nowplayingbar/nowplayingbar.js
+++ b/src/components/nowplayingbar/nowplayingbar.js
@@ -42,31 +42,31 @@ define(['require', 'datetime', 'itemHelper', 'events', 'browser', 'imageLoader',
// The onclicks are needed due to the return false above
html += '
';
- html += '';
+ html += 'skip_previous';
- html += '';
+ html += 'pause';
html += 'stop';
- html += '';
+ html += 'skip_next';
html += '';
html += '
';
html += '
';
- html += '';
+ html += 'volume_up';
html += '
';
html += '';
html += '
';
- html += '';
+ html += 'repeat';
html += '
';
html += '
';
- html += '';
- html += '';
+ html += 'pause';
+ html += 'playlist_play';
html += '
';
html += '';
@@ -400,9 +400,9 @@ define(['require', 'datetime', 'itemHelper', 'events', 'browser', 'imageLoader',
}
if (isMuted) {
- muteButton.querySelector('i').innerHTML = '';
+ muteButton.querySelector('i').innerHTML = 'volume_off';
} else {
- muteButton.querySelector('i').innerHTML = '';
+ muteButton.querySelector('i').innerHTML = 'volume_up';
}
if (progressElement) {
@@ -571,7 +571,7 @@ define(['require', 'datetime', 'itemHelper', 'events', 'browser', 'imageLoader',
var userData = item.UserData || {};
var likes = userData.Likes == null ? '' : userData.Likes;
- nowPlayingUserData.innerHTML = '';
+ nowPlayingUserData.innerHTML = 'favorite';
});
}
diff --git a/src/components/playback/brightnessosd.js b/src/components/playback/brightnessosd.js
index c949743bec..b2bf9d4106 100644
--- a/src/components/playback/brightnessosd.js
+++ b/src/components/playback/brightnessosd.js
@@ -11,7 +11,7 @@ define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'materia
function getOsdElementHtml() {
var html = '';
- html += '';
+ html += 'brightness_high';
html += '
';
@@ -102,11 +102,11 @@ define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'materia
if (iconElement) {
if (brightness >= 80) {
- iconElement.innerHTML = '';
+ iconElement.innerHTML = 'brightness_high';
} else if (brightness >= 20) {
- iconElement.innerHTML = '';
+ iconElement.innerHTML = 'brightness_medium';
} else {
- iconElement.innerHTML = '';
+ iconElement.innerHTML = 'brightness_low';
}
}
if (progressElement) {
@@ -161,4 +161,4 @@ define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'materia
bindToPlayer(playbackManager.getCurrentPlayer());
-});
\ No newline at end of file
+});
diff --git a/src/components/playback/playerSelectionMenu.js b/src/components/playback/playerSelectionMenu.js
index 7e4352bcb7..97e6e46230 100644
--- a/src/components/playback/playerSelectionMenu.js
+++ b/src/components/playback/playerSelectionMenu.js
@@ -63,17 +63,17 @@ define(['appSettings', 'events', 'browser', 'loading', 'playbackManager', 'appRo
switch (deviceType) {
case 'smartphone':
- return '';
+ return 'smartphone';
case 'tablet':
- return '';
+ return 'tablet';
case 'tv':
- return '';
+ return 'tv';
case 'cast':
- return '';
+ return 'cast';
case 'desktop':
- return '';
+ return 'computer';
default:
- return '';
+ return 'tv';
}
}
@@ -317,4 +317,4 @@ define(['appSettings', 'events', 'browser', 'loading', 'playbackManager', 'appRo
return {
show: showPlayerSelection
};
-});
\ No newline at end of file
+});
diff --git a/src/components/playback/volumeosd.js b/src/components/playback/volumeosd.js
index c7a3438d54..b622cc18b1 100644
--- a/src/components/playback/volumeosd.js
+++ b/src/components/playback/volumeosd.js
@@ -11,7 +11,7 @@ define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'materia
function getOsdElementHtml() {
var html = '';
- html += '';
+ html += 'volume_up';
html += '
';
@@ -101,7 +101,7 @@ define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'materia
function updatePlayerVolumeState(isMuted, volume) {
if (iconElement) {
- iconElement.innerHTML = isMuted ? '' : '';
+ iconElement.innerHTML = isMuted ? 'volume_off' : 'volume_up';
}
if (progressElement) {
progressElement.style.width = (volume || 0) + '%';
@@ -155,4 +155,4 @@ define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'materia
bindToPlayer(playbackManager.getCurrentPlayer());
-});
\ No newline at end of file
+});
diff --git a/src/components/playlisteditor/playlisteditor.js b/src/components/playlisteditor/playlisteditor.js
index 0379e56347..4738211a5e 100644
--- a/src/components/playlisteditor/playlisteditor.js
+++ b/src/components/playlisteditor/playlisteditor.js
@@ -258,7 +258,7 @@ define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'playbackManager',
var title = globalize.translate('HeaderAddToPlaylist');
html += '
';
- html += '';
+ html += 'arrow_back';
html += '
';
html += title;
html += '
';
@@ -295,4 +295,4 @@ define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'playbackManager',
};
return PlaylistEditor;
-});
\ No newline at end of file
+});
diff --git a/src/components/prompt/prompt.template.html b/src/components/prompt/prompt.template.html
index 200c98b116..b1e7f580f0 100644
--- a/src/components/prompt/prompt.template.html
+++ b/src/components/prompt/prompt.template.html
@@ -1,6 +1,6 @@
-
+ arrow_back
@@ -22,4 +22,4 @@
-
\ No newline at end of file
+
diff --git a/src/components/recordingcreator/recordingbutton.js b/src/components/recordingcreator/recordingbutton.js
index f51f8f2766..a32803e107 100644
--- a/src/components/recordingcreator/recordingbutton.js
+++ b/src/components/recordingcreator/recordingbutton.js
@@ -30,7 +30,7 @@ define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom'
this.refresh(options.itemId, options.serverId);
}
var button = options.button;
- button.querySelector('i').innerHTML = '';
+ button.querySelector('i').innerHTML = 'fiber_manual_record';
var clickFn = onRecordingButtonClick.bind(this);
this.clickFn = clickFn;
@@ -45,7 +45,7 @@ define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom'
var status;
if (item.Type === 'SeriesTimer') {
- return '';
+ return 'fiber_smart_record';
} else if (item.TimerId || item.SeriesTimerId) {
status = item.Status || 'Cancelled';
@@ -53,17 +53,17 @@ define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom'
status = item.Status;
} else {
- return '';
+ return 'fiber_manual_record';
}
if (item.SeriesTimerId) {
if (status !== 'Cancelled') {
- return '';
+ return 'fiber_smart_record';
}
}
- return '';
+ return 'fiber_manual_record';
}
RecordingButton.prototype.refresh = function (serverId, itemId) {
@@ -110,4 +110,4 @@ define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom'
};
return RecordingButton;
-});
\ No newline at end of file
+});
diff --git a/src/components/recordingcreator/recordingcreator.template.html b/src/components/recordingcreator/recordingcreator.template.html
index 386aa149cc..2a2840aecc 100644
--- a/src/components/recordingcreator/recordingcreator.template.html
+++ b/src/components/recordingcreator/recordingcreator.template.html
@@ -1,5 +1,5 @@
-
+ arrow_back
@@ -28,4 +28,4 @@
-
\ No newline at end of file
+
diff --git a/src/components/recordingcreator/recordingeditor.template.html b/src/components/recordingcreator/recordingeditor.template.html
index e36dda3f57..6b853704f3 100644
--- a/src/components/recordingcreator/recordingeditor.template.html
+++ b/src/components/recordingcreator/recordingeditor.template.html
@@ -1,5 +1,5 @@
-
+ arrow_back
${HeaderRecordingOptions}
@@ -43,4 +43,4 @@
-
\ No newline at end of file
+
diff --git a/src/components/recordingcreator/recordingfields.template.html b/src/components/recordingcreator/recordingfields.template.html
index 76ea5cee25..622b0d62e7 100644
--- a/src/components/recordingcreator/recordingfields.template.html
+++ b/src/components/recordingcreator/recordingfields.template.html
@@ -2,7 +2,7 @@
-
+ fiber_smart_record${RecordSeries}
@@ -14,7 +14,7 @@
-
+ fiber_manual_record${Record}
@@ -22,4 +22,4 @@
${Settings}
-
\ No newline at end of file
+
diff --git a/src/components/recordingcreator/seriesrecordingeditor.template.html b/src/components/recordingcreator/seriesrecordingeditor.template.html
index 54133ebbbb..c2e8ebd0ed 100644
--- a/src/components/recordingcreator/seriesrecordingeditor.template.html
+++ b/src/components/recordingcreator/seriesrecordingeditor.template.html
@@ -1,5 +1,5 @@
-
+ arrow_back
${HeaderSeriesOptions}
@@ -75,4 +75,4 @@
-
\ No newline at end of file
+
diff --git a/src/components/refreshdialog/refreshdialog.js b/src/components/refreshdialog/refreshdialog.js
index 6650170960..30074b4d0b 100644
--- a/src/components/refreshdialog/refreshdialog.js
+++ b/src/components/refreshdialog/refreshdialog.js
@@ -123,7 +123,7 @@ define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager'
var title = globalize.translate('RefreshMetadata');
html += '
';
- html += '';
+ html += 'arrow_back';
html += '
-
\ No newline at end of file
+
diff --git a/src/components/sortmenu/sortmenu.js b/src/components/sortmenu/sortmenu.js
index da2fcdaa7c..d4f75a0806 100644
--- a/src/components/sortmenu/sortmenu.js
+++ b/src/components/sortmenu/sortmenu.js
@@ -66,7 +66,7 @@ define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'layoutMana
var html = '';
html += '
';
- html += '';
+ html += 'arrow_back';
html += '
${Sort}
';
html += '
';
@@ -121,4 +121,4 @@ define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'layoutMana
};
return SortMenu;
-});
\ No newline at end of file
+});
diff --git a/src/components/subtitleeditor/subtitleeditor.js b/src/components/subtitleeditor/subtitleeditor.js
index b79bf4ba1a..964aa81789 100644
--- a/src/components/subtitleeditor/subtitleeditor.js
+++ b/src/components/subtitleeditor/subtitleeditor.js
@@ -281,7 +281,7 @@ define(['dialogHelper', 'require', 'layoutManager', 'globalize', 'userSettings',
html += '
';
if (!layoutManager.tv) {
- html += '';
+ html += 'file_download';
}
html += '' + tagName + '>';
diff --git a/src/components/subtitleeditor/subtitleeditor.template.html b/src/components/subtitleeditor/subtitleeditor.template.html
index 7891564449..dc8ae25701 100644
--- a/src/components/subtitleeditor/subtitleeditor.template.html
+++ b/src/components/subtitleeditor/subtitleeditor.template.html
@@ -1,8 +1,8 @@
-
\ No newline at end of file
+
diff --git a/src/livetv.html b/src/livetv.html
index 2bc99b2b80..2ff8990e4a 100644
--- a/src/livetv.html
+++ b/src/livetv.html
@@ -7,7 +7,7 @@
\ No newline at end of file
+
diff --git a/src/nowplaying.html b/src/nowplaying.html
index fa8ade166f..6be865d152 100644
--- a/src/nowplaying.html
+++ b/src/nowplaying.html
@@ -19,7 +19,7 @@
-
+ fast_rewind
@@ -31,7 +31,7 @@
-
+ fast_forward
@@ -65,7 +65,7 @@
-
+ volume_up
@@ -101,7 +101,7 @@
-
+ arrow_back
@@ -162,7 +162,7 @@
${TabPlaylist}
-
+ save
@@ -173,4 +173,4 @@
-
\ No newline at end of file
+
diff --git a/src/scheduledtask.html b/src/scheduledtask.html
index 9aebd9b55d..ee2a2c3420 100644
--- a/src/scheduledtask.html
+++ b/src/scheduledtask.html
@@ -16,7 +16,7 @@
${HeaderTaskTriggers}
-
+ add
diff --git a/src/scripts/librarybrowser.js b/src/scripts/librarybrowser.js
index 7ffc69fa87..b9f3b92471 100644
--- a/src/scripts/librarybrowser.js
+++ b/src/scripts/librarybrowser.js
@@ -91,20 +91,20 @@ define(["userSettings"], function (userSettings) {
html += '
';
if (showControls) {
- html += '';
- html += '= totalRecordCount ? "disabled" : "") + '>';
+ html += 'arrow_back';
+ html += '= totalRecordCount ? "disabled" : "") + '>arrow_forward';
}
if (options.addLayoutButton) {
- html += '';
+ html += 'view_comfy';
}
if (options.sortButton) {
- html += '';
+ html += 'sort_by_alpha';
}
if (options.filterButton) {
- html += '';
+ html += 'filter_list';
}
html += "
-
\ No newline at end of file
+
diff --git a/src/videoosd.html b/src/videoosd.html
index 34c73a3019..0c7a910908 100644
--- a/src/videoosd.html
+++ b/src/videoosd.html
@@ -1,4 +1,4 @@
-