From 53be18fec039c22e881d4cb84c453ecae383e3fd Mon Sep 17 00:00:00 2001 From: nathangray Date: Fri, 15 Jul 2016 08:24:57 -0600 Subject: [PATCH] Fix typo causing blanking in some cases when refreshing because of infolog changes --- calendar/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/js/app.js b/calendar/js/app.js index 80268f2a7b..19c077cfb2 100644 --- a/calendar/js/app.js +++ b/calendar/js/app.js @@ -305,7 +305,7 @@ app.classes.calendar = (function(){ "use strict"; return AppJS.extend( this._clear_cache(); // Calendar is the current application, refresh now - if(framework.activeApp.appName == this.appName) + if(framework.activeApp.appName === this.appname) { this.setState({state: this.state}); }