mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-20 00:10:26 +00:00
Fixed an issue where a directive that uses transclusion (such as ngRepeat) failed to link if it was declared on the root element of the compilation tree. (For example ngView or ngInclude including template where ngRepeat was the top most element).
11 lines
274 B
Text
11 lines
274 B
Text
//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);
|