From 46715a126825588f0510ca05ec04faaa12fbecc2 Mon Sep 17 00:00:00 2001 From: Amos Haviv Date: Mon, 23 Dec 2013 19:17:32 +0200 Subject: [PATCH] Fixing Facebook Redirect --- public/js/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/init.js b/public/js/init.js index 2246d152..939eee05 100644 --- a/public/js/init.js +++ b/public/js/init.js @@ -1,6 +1,6 @@ angular.element(document).ready(function() { //Fixing facebook bug with redirect - if (window.location.hash == "#_=_") window.location.hash = ""; + if (window.location.hash == "#_=_") window.location.hash = "#!"; //Then init the app angular.bootstrap(document, ['mean']);