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

9 lines
244 B
JavaScript
Raw Normal View History

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