Files
meanTorrent/public/js/init.js
2013-12-25 16:36:33 +02:00

9 lines
241 B
JavaScript

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