flosight-api/public/js/init.js
2014-01-06 17:54:32 -03:00

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