Created
November 17, 2010 22:20
-
-
Save getify/704226 to your computer and use it in GitHub Desktop.
adding "queueing" to LABjs dynamically, to be able to simulate the $LAB chain dynamically with a for-loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>LABjs Demo</title> | |
<script src="/js/queue.LAB.js"></script> | |
<script> | |
// adding `false` in the queue will signifiy an empty .wait() in the $LAB chain | |
$LAB.queue("http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js", false); | |
$LAB.queue("http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js", false); | |
if (_is_IE) $LAB.queue("/js/ie-only.js"); | |
</script> | |
</head> | |
<body> | |
<!-- other stuff --> | |
<script> | |
$LAB.queue("/js/mypage1.js"); | |
</script> | |
<!-- more stuff --> | |
<script> | |
$LAB.queue("/js/myinit.js",function(){ | |
$(document).ready(function(){ | |
myinit(); | |
// other stuff | |
}); | |
}); | |
</script> | |
<!-- still more stuff --> | |
<script> | |
$LAB.executeQueue(); | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! LAB.js v1.2.0 (c) Kyle Simpson MIT License */ | |
/* INCLUDE THE MINIFIED LAB.js CODE HERE */ | |
// add some boilerplate "queue" behavior for use with LABjs | |
$LAB._queue = []; | |
$LAB.queue = function() { | |
Array.prototype.push.apply($LAB._queue,arguments); | |
return this; | |
}; | |
$LAB.executeQueue = function() { | |
var $L = $LAB; | |
for (var i=0, len=$LAB._queue.length; i<len; i++) { | |
if (typeof $LAB._queue[0] == "string") { | |
$L = $L.script($LAB._queue[0]); | |
} | |
else if ($LAB._queue[0] === false) { | |
$L = $L.wait(); | |
} | |
else { | |
$L = $L.wait($LAB._queue[0]); | |
} | |
$LAB._queue.shift(); // remove first element from the _queue | |
} | |
$LAB._queue = []; | |
}; |
@rmaksim -- good catches... this was a hastily written snippet while I was giving my #jqsummit talk. :) I've updated the code accordingly.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$LAB.queue = function() {
Array.prototype.push.apply($LAB._queue,arguments); // !!!
return this; // !!!
};
if (typeof $LAB._queue[0] == "string") {
$L = $L.script($LAB._queue[0]); // !!! [0] instead of [i]
}