summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2014-02-10 14:24:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-09 12:23:58 -0700
commit06f9059abc405197584acf189fac374047af395c (patch)
tree33744c2272f29caec94f2949a3fc0e3a630662eb /bitbake/lib
parent6fc246232aeacfacdf5e873e84be1485ce2c22e0 (diff)
downloadpoky-06f9059abc405197584acf189fac374047af395c.tar.gz
bitbake: toaster: array-assignment fix from Chome
Apparently the JS engine in Chrome can't handle assignments to an array, so I'm patching this up by using an intermediate array to hold the values. (Bitbake rev: 47f5fde1bd8cf2e6f7e5c4ec2534a2f9599c4ea2) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/base.html3
-rw-r--r--bitbake/lib/toaster/toastergui/templates/basetable_bottom.html3
2 files changed, 4 insertions, 2 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 = {}
diff --git a/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html b/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html
index 4eb303da79..ac14363798 100644
--- a/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html
+++ b/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html
@@ -44,7 +44,8 @@
44 setting = save.split(';'); 44 setting = save.split(';');
45 for ( i = 0; i < setting.length; i++) { 45 for ( i = 0; i < setting.length; i++) {
46 if (setting[i].length > 0) { 46 if (setting[i].length > 0) {
47 [id, v] = setting[i].split(':'); 47 splitlist = setting[i].split(':');
48 id = splitlist[0], v = splitlist[1];
48 if (v == 'true') { 49 if (v == 'true') {
49 $('.chbxtoggle#'+id).prop('checked', true); 50 $('.chbxtoggle#'+id).prop('checked', true);
50 } 51 }