mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-02 12:39:25 +01:00
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
window.bootstrap = function () {
|
|
angular.bootstrap(document, ['MEAN']);
|
|
}
|
|
|
|
window.init = function () {
|
|
window.bootstrap();
|
|
}
|
|
|
|
$(document).ready(function () {
|
|
//Fixing facebook bug with redirect
|
|
if (window.location.hash == "#_=_") window.location.hash = "";
|
|
window.init();
|
|
}); |