mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-05 22:35:14 +08:00
The last script element in the dom is always us if the script that contains angular is loaded synchronously. For async loading manual bootstrap needs to be performed. Close #621
9 lines
150 B
Plaintext
9 lines
150 B
Plaintext
|
|
var config = angularJsConfig(document);
|
|
|
|
jqLiteWrap(document).ready(function() {
|
|
angularInit(config, document);
|
|
});
|
|
|
|
})(window, document);
|