Merge pull request #224 from sbarman/master

fix to bug with detected font loading
This commit is contained in:
Andreas Gal 2011-07-08 18:39:32 -07:00
commit 3fb2b026bf

View File

@ -154,7 +154,8 @@ var FontLoader = {
'message', 'message',
function(e) { function(e) {
var fontNames = JSON.parse(e.data); var fontNames = JSON.parse(e.data);
for (var i = 0; i < fontNames.length; ++i) { // set all the fonts to loaded (not sure if this is correct)
for (var i = 0; i < ids.length; ++i) {
var font = Fonts.lookupById(ids[i]); var font = Fonts.lookupById(ids[i]);
font.loading = false; font.loading = false;
} }