Fixing a problem with my checkbox patch from the other day (something didn't revert properly). r=kerz

This commit is contained in:
blakeross%telocity.com 2001-01-12 00:23:09 +00:00
parent 94b0ea5983
commit 065f758e84

View File

@ -154,8 +154,8 @@
if (v == 'true') return true; return false;"/>
</implementation>
<handlers>
<handler event="click" button="1" action="this.checked = !this.checked;"/>
<handler event="keypress" key=" " action="this.checked = !this.checked;"/>
<handler event="click" button="1" action="if (!this.disabled) this.checked = !this.checked;"/>
<handler event="keypress" key=" " action="if (!this.disabled) this.checked = !this.checked;"/>
</handlers>
</binding>