mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-02 09:00:34 +08:00
12 lines
274 B
Plaintext
12 lines
274 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);
|
|
|
|
jqLite(document).ready(function() {
|
|
angularInit(document, bootstrap);
|
|
});
|
|
|
|
})(window, document);
|