From 478866631f19d7a34cb959984caa059a68661d9c Mon Sep 17 00:00:00 2001 From: Thomas Wade Date: Thu, 18 Oct 2018 15:49:11 +1030 Subject: [PATCH] Disable HTML5 routes Look into the docs for enableHTML5mode() --- scripts/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/app.js b/scripts/app.js index 7c722c0..f0b6640 100644 --- a/scripts/app.js +++ b/scripts/app.js @@ -9,7 +9,7 @@ app.config( .when("/about", {templateUrl: "views/about.html", controller: "about"}) .when("/faq", {templateUrl: "views/faq.html", controller: "faq"}) .otherwise("

yeey

"); - $locationProvider.html5mode({enabled: true, requireBase: false}); + // $locationProvider.html5mode({enabled: true, requireBase: false}); } );