mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 11:26:09 +00:00
Fixing a problem with my checkbox patch from the other day (something didn't revert properly). r=kerz
This commit is contained in:
parent
94b0ea5983
commit
065f758e84
@ -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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user