summaryrefslogtreecommitdiff
path: root/web-ui/app/js/page
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-10-15 18:14:23 +0200
committerDuda Dornelles <ddornell@thoughtworks.com>2014-10-15 18:16:42 +0200
commit9ccc0e017934cb94c525acfc1767ff8c4f5d091b (patch)
tree14f2d4dac028c7c6b2cd5d8c4dda6b56c4a3e2cf /web-ui/app/js/page
parent57a842925ce6e12f45805c595cc401b7a2225a81 (diff)
Fixing url parsing for opening the page with an open mail
Diffstat (limited to 'web-ui/app/js/page')
-rw-r--r--web-ui/app/js/page/router/url_params.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web-ui/app/js/page/router/url_params.js b/web-ui/app/js/page/router/url_params.js
index 3e999ecc..6521ef43 100644
--- a/web-ui/app/js/page/router/url_params.js
+++ b/web-ui/app/js/page/router/url_params.js
@@ -27,7 +27,7 @@ define([], function () {
function hashTag(hash) {
if (hasMailIdent(hash)) {
- return /\/(.+)\/mail\/\d+$/.exec(getDocumentHash())[1];
+ return /\/(.+)\/mail\/[A-Z0-9]+$/.exec(getDocumentHash())[1];
}
return hash.substring(2);
}
@@ -41,11 +41,11 @@ define([], function () {
}
function hasMailIdent() {
- return getDocumentHash().match(/mail\/\d+$/);
+ return getDocumentHash().match(/mail\/[A-Z0-9]+$/);
}
function getMailIdent() {
- return /mail\/(\d+)$/.exec(getDocumentHash())[1];
+ return /mail\/([A-Z0-9]+)$/.exec(getDocumentHash())[1];
}
return {