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