SAAS-301:

Calendar content indicator did not update automatically after adding content to a show

-fixed
This commit is contained in:
Martin Konecny 2013-04-11 15:04:16 -04:00
parent 5b4bc038b0
commit 3000f543d8
1 changed files with 3 additions and 1 deletions
airtime_mvc/public/js/airtime/showbuilder

View File

@ -42,7 +42,9 @@ var AIRTIME = (function(AIRTIME){
mod.updateCalendarStatusIcon = function(json) {
if (window.location.pathname.toLowerCase() != baseUrl+"schedule") {
//make sure we are only executing this code on the calendar view, not
//the Now Playing view.
if (window.location.pathname.toLowerCase().indexOf("schedule") >= 0) {
return;
}