Bugfix for history refresh in IE

This commit is contained in:
James Taylor
2009-07-16 15:35:58 -04:00
parent 4dea3701a4
commit 4e6b7d1cff
+5 -2
View File
@@ -73,9 +73,12 @@
});
// Updater
updater({
%for data in reversed( datasets ):
%for i, data in enumerate( reversed( datasets ) ):
%if data.visible and data.state not in [ "deleted", "empty", "error", "ok" ]:
"${data.id}": "${data.state}";
%if i > 0:
,
%endif
"${data.id}": "${data.state}"
%endif
%endfor
});