aboutsummaryrefslogtreecommitdiffstats
path: root/docs/docs.js
diff options
context:
space:
mode:
authorIgor Minar2010-11-18 11:56:10 -0800
committerIgor Minar2010-11-18 11:56:10 -0800
commit3c7874b07bfb811c3f7b7853628595b4698d6aa4 (patch)
tree8a18aa529a9706aa4f532ebd4e2c94df8c659c11 /docs/docs.js
parent7f339a17822aea25655b3bf14c7465f6c8bf103f (diff)
downloadangular.js-3c7874b07bfb811c3f7b7853628595b4698d6aa4.tar.bz2
don't encode page.name (hash) in docs.js
see discussion in https://github.com/angular/angular.js/pull/158"
Diffstat (limited to 'docs/docs.js')
-rw-r--r--docs/docs.js2
1 files changed, 1 insertions, 1 deletions
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(){