summaryrefslogtreecommitdiffstats
path: root/afm-client/app/Frontend/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'afm-client/app/Frontend/app.js')
-rw-r--r--afm-client/app/Frontend/app.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/afm-client/app/Frontend/app.js b/afm-client/app/Frontend/app.js
index 74f5d5f..24d5539 100644
--- a/afm-client/app/Frontend/app.js
+++ b/afm-client/app/Frontend/app.js
@@ -1,12 +1,15 @@
(function() {
'use strict';
- function ParseQueryString () {
+
+ function ParseQueryString () {
var qd = {};
location.search.substr(1).split("&").forEach(function(item) {
- var k = item.split("=")[0], v = decodeURIComponent(item.split("=")[1]); (k in qd) ? qd[k].push(v) : qd[k] = [v];
+ var k = item.split("=")[0];
+ var v = decodeURIComponent(item.split("=")[1]);
+ (k in qd) ? qd[k].push(v) : qd[k] = [v];
});
return qd;
- }
+ }
angular.module('@@APPNAME@@', [ // Warning: Appname should fit with gulpfile.js & index.html
'ui.router',