From 78a9f728d0d687001dbf12293da7932924885bba Mon Sep 17 00:00:00 2001 From: Alan Quach Date: Tue, 4 Jun 2019 12:35:21 -0700 Subject: [PATCH] fix(core): Disable rewriteLinks to allow proper event handling (#7064) --- app/scripts/modules/core/src/bootstrap/angular.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/scripts/modules/core/src/bootstrap/angular.config.ts b/app/scripts/modules/core/src/bootstrap/angular.config.ts index e72c252d5a6..c26b6462636 100644 --- a/app/scripts/modules/core/src/bootstrap/angular.config.ts +++ b/app/scripts/modules/core/src/bootstrap/angular.config.ts @@ -35,5 +35,6 @@ bootstrapModule.config([ '$locationProvider', ($locationProvider: ILocationProvider) => { $locationProvider.hashPrefix(''); + $locationProvider.html5Mode({ enabled: false, rewriteLinks: false }); }, ]);