From: paul Date: Wed, 3 Aug 2016 08:42:25 +0000 (+0000) Subject: js compatibility for firefox and android browser X-Git-Url: https://git.plutz.net/?p=confetti;a=commitdiff_plain;h=f638f72fd3b6395e1e68061673c9737a481caeee js compatibility for firefox and android browser svn path=/trunk/; revision=131 --- diff --git a/static/therapy_draw.js b/static/therapy_draw.js index 8266ac5..8a8e936 100644 --- a/static/therapy_draw.js +++ b/static/therapy_draw.js @@ -74,12 +74,8 @@ function drawstart(x, y) { stx=relX(x), sty=relY(y) - document.getElementsByName("penwidth").forEach( - function(x, y, z){ if (x.checked) setstroke(x.value); } - ); - document.getElementsByName("color").forEach( - function(x, y, z){ if (x.checked) setcol(x.value); } - ); + setstroke(document.querySelector('input[name="penwidth"]:checked').value); + setcol(document.querySelector('input[name="color"]:checked').value); image.beginPath() draw(x, y) // why must this not use relative Coords ???