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