insight-ui-zcash/public/js/init.js

10 lines
237 B
JavaScript
Raw Normal View History

2014-01-06 12:34:25 -08:00
'use strict';
angular.element(document).ready(function() {
2014-01-06 12:54:32 -08:00
//Fixing facebook bug with redirect
if (window.location.hash === '#_=_') window.location.hash = '#!';
2014-01-06 12:34:25 -08:00
2014-01-06 12:54:32 -08:00
//Then init the app
2014-01-17 06:46:12 -08:00
angular.bootstrap(document, ['insight']);
2014-01-06 12:54:32 -08:00
});