dailinjie / jsload

Automatically exported from code.google.com/p/jsload
0 stars 0 forks source link

Loads script 'undefined' #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
There is bug in function loadScript(version 0.9):
after returning from function loadNext() script tries to load non existing file

line 223:if ( (iteration + 1) > srcSetObj.srcToLoad.length ) loadNext();
should be 

223:if((iteration + 1) > srcSetObj.srcToLoad.length){loadNext();return;}

Original issue reported on code.google.com by ramunas....@gmail.com on 14 Jan 2011 at 9:16

GoogleCodeExporter commented 8 years ago
Seems code in svn is correct. So this bug is only in minified version. Need to 
update downloads section.

Original comment by ramunas....@gmail.com on 24 Jan 2011 at 8:30