diff --git a/dashboard-ui/library.html b/dashboard-ui/library.html index 9b52ae4816..cb2b9e3da4 100644 --- a/dashboard-ui/library.html +++ b/dashboard-ui/library.html @@ -1,5 +1,5 @@  - + @@ -21,6 +21,7 @@

Below are your media collections. Expand a collection to add or remove media locations assigned to it.

+

This is the default media library that will be shared with all users unless they setup their own.

diff --git a/dashboard-ui/scripts/medialibrarypage.js b/dashboard-ui/scripts/medialibrarypage.js index 15a0a529d4..549753c5ff 100644 --- a/dashboard-ui/scripts/medialibrarypage.js +++ b/dashboard-ui/scripts/medialibrarypage.js @@ -20,6 +20,13 @@ $('#userProfileNavigation', page).show(); ApiClient.getUser(userId).done(function (user) { + //I don't really like this hack - Craig + $("div.sidebarLinks a").removeClass("selectedSidebarLink"); + $("div.sidebarLinks a").each(function(){ + if ($(this).attr("href")=="userprofiles.html") { + $(this).addClass("selectedSidebarLink"); + } + }); Dashboard.setPageTitle(user.Name);