blob: 99726fbd394b2b8fa5e3b486d8d8122f1bfb1dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//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);
|