Advertisement
marcelofoxes

Untitled

Feb 9th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // manually bootstrap angular
  2. (function() {
  3.     "use strict";
  4.  
  5.     function bootstrap() {
  6.         angular.bootstrap(document, ['seu.modulo']);
  7.     }
  8.    
  9.     angular.element(document).ready(bootstrap);
  10. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement