From: Brion Vibber Date: Thu, 19 Jul 2007 15:49:25 +0000 (+0000) Subject: rename checkboxMouseupHandler to checkboxClickHandler for the feel-good value of... X-Git-Tag: 1.31.0-rc.0~52007 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/rappels.php?a=commitdiff_plain;h=ee30721d8bc5b157100feeb3a5c64c1f14c23ef3;p=lhc%2Fweb%2Fwiklou.git rename checkboxMouseupHandler to checkboxClickHandler for the feel-good value of non-confusing names :D --- diff --git a/skins/common/wikibits.js b/skins/common/wikibits.js index ee8c493145..af3ffc6326 100644 --- a/skins/common/wikibits.js +++ b/skins/common/wikibits.js @@ -728,7 +728,7 @@ function addCheckboxClickHandlers(inputs, start) { var end = checkboxes.length; checkboxes[end] = cb; cb.index = end; - cb.onclick = checkboxMouseupHandler; + cb.onclick = checkboxClickHandler; } if ( finish < inputs.length ) { @@ -738,7 +738,7 @@ function addCheckboxClickHandlers(inputs, start) { } } -function checkboxMouseupHandler(e) { +function checkboxClickHandler(e) { if (typeof e == 'undefined') { e = window.event; }