From dbbba1625053a494a73f52d41847ce94638fe049 Mon Sep 17 00:00:00 2001 From: Xinni Ge Date: Thu, 30 Nov 2017 23:26:30 +0900 Subject: [PATCH] Change rewriteLinks to false Set `$locationProvider.html5Mode` rewriteLinks to false, otherwise the anchor links cannot function normally. Change-Id: I28f286eace386b5300fe195eb5daa2f63e6a7b8f --- .../js/components/template-generator.module.js | 3 ++- .../js/components/template-generator.module.spec.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/js/components/template-generator.module.js b/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/js/components/template-generator.module.js index a58213c4..24ccbafe 100644 --- a/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/js/components/template-generator.module.js +++ b/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/js/components/template-generator.module.js @@ -16,7 +16,8 @@ .config(['$locationProvider', function($locationProvider) { $locationProvider.html5Mode({ enabled: true, - requireBase: false + requireBase: false, + rewriteLinks: false, }); }]) .config(['$provide', '$windowProvider', function($provide, $windowProvider){ diff --git a/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/js/components/template-generator.module.spec.js b/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/js/components/template-generator.module.spec.js index f00f9176..0e484cf1 100644 --- a/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/js/components/template-generator.module.spec.js +++ b/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/js/components/template-generator.module.spec.js @@ -35,7 +35,7 @@ it('should set html5 mode', function() { expect($locationProvider.html5Mode) - .toHaveBeenCalledWith({ enabled: true, requireBase: false }); + .toHaveBeenCalledWith({ enabled: true, requireBase: false, rewriteLinks: false }); }); });