Make sure change callback doesn't run during template rendering

This commit is contained in:
Nathan Gray 2014-01-10 14:25:41 +00:00
parent 5f85d2a592
commit 5ae4da09cd

View File

@ -220,6 +220,9 @@ 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;
var status = document.getElementById(status_id);
var percent = document.getElementById(percent_id);
var datecompleted = document.getElementById(datecompleted_id+'[str]');