Skip to content

Commit

Permalink
LABjs.next: fixing bug with ordered async loading
Browse files Browse the repository at this point in the history
  • Loading branch information
getify committed May 18, 2011
1 parent c6e0e3b commit 6134e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion next/LAB.src.js
Expand Up @@ -128,7 +128,7 @@
if (script_obj.charset) script.charset = script_obj.charset;

// no preloading, just normal script element
if (!chain_group.preload) {
if (!chain_group.preload && !script_ordered_async) {
if (script_ordered_async) script.async = false;
create_script_load_listener(script,registry_item,"finished",onload);
script.src = src;
Expand Down

0 comments on commit 6134e2c

Please sign in to comment.