CC-5317 : Guest user can't see Now playing page

removed the library module completely from page if the user does not have permission to view it.
This commit is contained in:
Naomi Aro 2013-09-24 12:21:04 +02:00
parent 71001480d2
commit 7e96828cdd
3 changed files with 38 additions and 25 deletions

View file

@ -186,7 +186,11 @@ AIRTIME = (function(AIRTIME) {
AIRTIME.showbuilder.fnServerData.start = oRange.start;
AIRTIME.showbuilder.fnServerData.end = oRange.end;
AIRTIME.library.libraryInit();
//the user might not have the library on the page (guest user)
if (AIRTIME.library !== undefined) {
AIRTIME.library.libraryInit();
}
AIRTIME.showbuilder.builderDataTable();
setWidgetSize();