From d7b00236794e905b41531a755d03b6bc24757ba9 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 31c6ea2969..9d8c9c8104 100644 --- a/calendar/js/app.js +++ b/calendar/js/app.js @@ -308,7 +308,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}); }