From c6206125d3b00af6980fb3ccd121e64a94a5e7d1 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 3 Feb 2015 16:06:56 -0500 Subject: [PATCH] enforce user access to offline items --- dashboard-ui/scripts/indexpage.js | 5 ++++- dashboard-ui/scripts/syncactivity.js | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/dashboard-ui/scripts/indexpage.js b/dashboard-ui/scripts/indexpage.js index 67f21bfe70..c5806208c1 100644 --- a/dashboard-ui/scripts/indexpage.js +++ b/dashboard-ui/scripts/indexpage.js @@ -57,7 +57,10 @@ icon = "fa-book"; break; case "channels": - icon = "fa-video-camera"; + icon = "fa-globe"; + break; + case "playlists": + icon = "fa-list"; break; default: icon = "fa-folder-o"; diff --git a/dashboard-ui/scripts/syncactivity.js b/dashboard-ui/scripts/syncactivity.js index 0ba1c33053..5e4843960b 100644 --- a/dashboard-ui/scripts/syncactivity.js +++ b/dashboard-ui/scripts/syncactivity.js @@ -97,7 +97,7 @@ background = 'rgba(72, 0, 255, ' + opacity + ')'; } - html += '
'; + html += '
'; html += text; html += '
';