(
el,
value,
modifiers
)
| 5775 | } |
| 5776 | |
| 5777 | function genRadioModel ( |
| 5778 | el, |
| 5779 | value, |
| 5780 | modifiers |
| 5781 | ) { |
| 5782 | var number = modifiers && modifiers.number; |
| 5783 | var valueBinding = getBindingAttr(el, 'value') || 'null'; |
| 5784 | valueBinding = number ? ("_n(" + valueBinding + ")") : valueBinding; |
| 5785 | addProp(el, 'checked', ("_q(" + value + "," + valueBinding + ")")); |
| 5786 | addHandler(el, CHECKBOX_RADIO_TOKEN, genAssignmentCode(value, valueBinding), null, true); |
| 5787 | } |
| 5788 | |
| 5789 | function genSelect ( |
| 5790 | el, |
no test coverage detected