summaryrefslogtreecommitdiff
path: root/app/webutil.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/webutil.js')
-rw-r--r--app/webutil.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/webutil.js b/app/webutil.js
index d42b7f2..084c69f 100644
--- a/app/webutil.js
+++ b/app/webutil.js
@@ -32,7 +32,7 @@ export function initLogging(level) {
export function getQueryVar(name, defVal) {
"use strict";
const re = new RegExp('.*[?&]' + name + '=([^&#]*)'),
- match = ''.concat(document.location.href, window.location.hash).match(re);
+ match = ''.concat(document.location.href, window.location.hash).match(re);
if (typeof defVal === 'undefined') { defVal = null; }
if (match) {
@@ -46,7 +46,7 @@ export function getQueryVar(name, defVal) {
export function getHashVar(name, defVal) {
"use strict";
const re = new RegExp('.*[&#]' + name + '=([^&]*)'),
- match = document.location.hash.match(re);
+ match = document.location.hash.match(re);
if (typeof defVal === 'undefined') { defVal = null; }
if (match) {