fix analysis loader

This commit is contained in:
Thibault Duplessis 2014-10-20 17:54:12 +02:00
parent 24eded7c0f
commit e76b4445b6

View file

@ -1894,7 +1894,7 @@ var storage = {
var len = moves.length,
it = 0;
setInterval(function() {
t.innerHTML = moves[it++ % len];
t.innerHTML = moves[it++ % len] || '';
}, 100);
});
};