We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 935b2b9 commit 9a5abfcCopy full SHA for 9a5abfc
1 file changed
demo/index.html
@@ -356,6 +356,16 @@
356
} else {
357
http.open('GET', location.href + '?type=option&option=' + type.name + '&state=' + ((type.checked == true) ? 'on' : 'off'), true);
358
}
359
+ // DEMO CLEANUP CRAP
360
+ if (rto != null && type.checked == true) {
361
+ i = 1;
362
+ while ( (zb = document.getElementById('btn-toggle-z'+i)) != null ) {
363
+ if (zb.name != type.name) {
364
+ zb.checked = false;
365
+ i++;
366
+ }
367
368
369
370
http.send(null);
371
0 commit comments