Better check to make sure change callback doesn't run during template rendering - handles template reloads

This commit is contained in:
Nathan Gray 2014-01-10 15:02:50 +00:00
parent cb94adb995
commit c7de2d229d

View File

@ -221,7 +221,7 @@ app.classes.infolog = AppJS.extend(
status_changed: function(changed_id, status_id, percent_id, datecompleted_id)
{
// Make sure this doesn't get executed while template is loading
if(this.et2 == null) return;
if(this.et2 == null || this.et2.getInstanceManager() == null) return;
var status = document.getElementById(status_id);
var percent = document.getElementById(percent_id);