mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-07 17:16:42 +08:00
14 lines
318 B
Plaintext
14 lines
318 B
Plaintext
//try to bind to jquery now so that one can write angular.element().read()
|
|
//but we will rebind on bootstrap again.
|
|
bindJQuery();
|
|
|
|
publishExternalAPI(angular);
|
|
|
|
var config = angularJsConfig(document);
|
|
|
|
jqLiteWrap(document).ready(function() {
|
|
angularInit(config, document);
|
|
});
|
|
|
|
})(window, document);
|