details: http://www.bx.psu.edu/hg/galaxy/rev/46bd94b12a0c changeset: 2487:46bd94b12a0c user: James Taylor <james@jamestaylor.org> date: Thu Jul 16 15:35:58 2009 -0400 description: Bugfix for history refresh in IE 1 file(s) affected in this change: templates/root/history.mako diffs (18 lines): diff -r 079bf1a8422b -r 46bd94b12a0c templates/root/history.mako --- a/templates/root/history.mako Thu Jul 16 09:45:43 2009 -0400 +++ b/templates/root/history.mako Thu Jul 16 15:35:58 2009 -0400 @@ -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 });