- Attempt to fix icon flickering in webui

This commit is contained in:
Christophe Dumez 2008-10-28 21:17:17 +00:00
parent 949eb2b5f5
commit 0177e1fee4

View file

@ -166,7 +166,9 @@ var dynamicTable = new Class ({
{
var tds = tr.getElements('td');
row.each(function(el, i){
tds[i].set('html', el);
if(tds[i].get('html') != el) {
tds[i].set('html', el);
}
});
return true;
}