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