From 3c7874b07bfb811c3f7b7853628595b4698d6aa4 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 18 Nov 2010 11:56:10 -0800 Subject: don't encode page.name (hash) in docs.js see discussion in https://github.com/angular/angular.js/pull/158" --- docs/docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/docs.js') diff --git a/docs/docs.js b/docs/docs.js index c8cc8069..8c836049 100644 --- a/docs/docs.js +++ b/docs/docs.js @@ -6,7 +6,7 @@ function DocsController($location, $browser, $window) { window.$root = this.$root; this.getUrl = function(page){ - return '#!' + encodeURIComponent(page.name); + return '#!' + page.name; }; this.getCurrentPartial = function(){ -- cgit v1.2.3