1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/benchmark/boolean_attribute.haml

7 lines
146 B
Text
Raw Normal View History

2015-11-13 09:56:54 -05:00
%input{ disabled: false }
%input{ disabled: true }
- disabled = false
%input{ disabled: disabled }
- disabled = true
%input{ disabled: disabled }