ohif-viewer/Packages/ohif-core/components/bootstrap/input/radio.html
2016-07-25 17:19:47 -03:00

16 lines
492 B
HTML

<template name="inputRadio">
{{#baseComponent (extend this
base='baseInput'
type='radio'
mixins=(concat 'input ' this.mixins)
labelAfter=(valueIf (isUndefined this.labelAfter) true this.labelAfter)
labelClass=(concat 'checkboxLabel ' this.labelClass)
wrappers=(concat ''
(valueIf reactive this.label 'wrapperLabel ' '')
this.wrappers
)
)}}
{{>UI.contentBlock}}
{{/baseComponent}}
</template>