summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/base.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/base.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/base.html b/bitbake/lib/toaster/toastergui/templates/base.html
index c8c1daeb75..2d2bfcaf99 100644
--- a/bitbake/lib/toaster/toastergui/templates/base.html
+++ b/bitbake/lib/toaster/toastergui/templates/base.html
@@ -22,7 +22,8 @@
22<script> 22<script>
23function reload_params(params) { 23function reload_params(params) {
24 uri = window.location.href; 24 uri = window.location.href;
25 [url, parameters] = uri.split("?"); 25 splitlist = uri.split("?");
26 url = splitlist[0], parameters=splitlist[1];
26 // deserialize the call parameters 27 // deserialize the call parameters
27 cparams = parameters.split("&"); 28 cparams = parameters.split("&");
28 nparams = {} 29 nparams = {}