SAAS-301:
Calendar content indicator did not update automatically after adding content to a show -fixed
This commit is contained in:
parent
5b4bc038b0
commit
3000f543d8
airtime_mvc/public/js/airtime/showbuilder
|
@ -42,7 +42,9 @@ var AIRTIME = (function(AIRTIME){
|
||||||
mod.updateCalendarStatusIcon = function(json) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue