update icon
This commit is contained in:
parent
71d59feb76
commit
93be06bdd4
4 changed files with 30 additions and 11 deletions
|
@ -323,7 +323,7 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
|
|||
name: globalize.translate("TabLiveTV"),
|
||||
href: "livetvstatus.html",
|
||||
pageIds: ["liveTvStatusPage", "liveTvTunerPage"],
|
||||
icon: "tv"
|
||||
icon: "live_tv"
|
||||
});
|
||||
links.push({
|
||||
name: globalize.translate("DVR"),
|
||||
|
@ -538,9 +538,12 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
|
|||
else if ("photos" === i.CollectionType) {
|
||||
icon = "photo_library";
|
||||
}
|
||||
else if ("music" === i.CollectionType || "musicvideos" === i.CollectionType) {
|
||||
else if ("music" === i.CollectionType) {
|
||||
icon = "library_music";
|
||||
}
|
||||
else if ("musicvideos" === i.CollectionType) {
|
||||
icon = "music_video";
|
||||
}
|
||||
else if ("books" === i.CollectionType) {
|
||||
icon = "library_books";
|
||||
}
|
||||
|
@ -550,6 +553,9 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
|
|||
else if ("movies" === i.CollectionType) {
|
||||
icon = "video_library";
|
||||
}
|
||||
else if ("homevideos" === i.CollectionType) {
|
||||
icon = "video_label";
|
||||
}
|
||||
else if ("channels" === i.CollectionType || "Channel" === i.Type) {
|
||||
icon = "videocam";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue