I have used queueScript to append the scripts. But they are appended in the <head>
tag. I want to append them at the end of the body tag. how do I do it?
var comp;
var _DIR_ = "js/vendor/";
var _BOWER_DIR_ = "bower_components/";
$LAB.setOptions({
AlwaysPreserveOrder: true
});
$LAB
.queueScript(_DIR_+'jquery2.1.3.min.js')
.queueScript(_DIR_ + 'angular.min.js')
.queueWait()
.queueScript(_BOWER_DIR_ + 'angular-bootstrap/ui-bootstrap-tpls.min.js')
.queueScript(_DIR_+'angular-animate.min.js')
.runQueue();
</script>