aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/services.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services.js b/src/services.js
index 1efd5234..b84ba3e6 100644
--- a/src/services.js
+++ b/src/services.js
@@ -249,7 +249,7 @@ angularServiceInject("$location", function(browser) {
function composeHash(loc) {
var hashSearch = toKeyValue(loc.hashSearch);
//TODO: temporary fix for issue #158
- return escape(loc.hashPath).replace(/%21/gi, '!').replace(/%3A/gi, ':') +
+ return escape(loc.hashPath).replace(/%21/gi, '!').replace(/%3A/gi, ':').replace(/%24/gi, '$') +
(hashSearch ? '?' + hashSearch : '');
}