From 3ba47d47a99984a1418ddf758d004e5e530f2195 Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Tue, 9 Feb 2016 18:55:40 +0100 Subject: Cleanup --- afm-client/app/Frontend/app.js | 9 ++++++--- 1 file 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', -- cgit 1.2.3-korg