flocore-node/public/js/init.js
2014-01-06 17:34:25 -03:00

9 lines
244 B
JavaScript
Executable File

'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']);
});