-
Hi,
i propose using requirejs for adding dependency information to core and plugin files. The benefit of using requirejs annotations is that the annotations can also create a compressed version of th…
-
I'm integrating LABjs into Drupal 7. However I have a problem. Here are my code:
```
```
However, the code in jQuery.extend(...) has some problem. I don't know why. That line …
-
I ran across a somewhat hard to debug problem caused by loading the LAB script twice. I had LAB included in the main page, which loaded some scripts.
Then, later on in the page lifecycle, I used jQue…
-
Hello,
I am new to this framework, but would really like to incorporate it into my application. I am trying to determine what the best way to instantiate all of my objects initially is.
I understan…
-
Hey,
Is it expected behavior that a hanging image request delays execution of DOM-ready code loaded by LABjs? I have a test page that requests an image that sleeps for 5 seconds and alerts on DOM-re…
-
I have this code:
```
$LAB.setGlobalDefaults({AlwaysPreserveOrder:true});
$LAB.queueScript("/misc/jquery.js").queueWait();
$LAB.queueScript(function() {x = {};jQuery.extend(x, {test:1});});
$LAB…
-
http://blog.163.com/jinlu_hz/blog/static/113830152201142011225195/
-
A chain like the following:
```
$LAB.script("test2.js")
.wait(function() {console.log('right after test2.js');})
.script("test.js");
```
The "right after test 2" doesn't seem to actually happen befo…
-
LABjs does some impressive stuff in loading Javascript files. Currently the assets plugin combines and minifies the Javascript files, but this doesn't work properly and it's disabled at the moment.
Htbaa updated
13 years ago
-
I have some dependencies that need to be executed in a certain order. It seems that I have to nest calls to `$script` to make scripts run in a specific order. Is this the case, or am I missing somethi…