Advertisement
Guest User

Untitled

a guest
Jul 11th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. window.app = angular.module('angularYoApp', ['ui.router',]);
  2.  
  3. window.bootstrap = function(){
  4. angular.bootstrap(document, ['angularYoApp']);
  5. };
  6.  
  7. window.init = function(){
  8. window.bootstrap();
  9. };
  10.  
  11. $(function(){
  12. if (window.location.hash == "#_=_") window.location.hash = ""; // ...
  13.  
  14. window.init();
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement