ohif-viewer/Packages/ohif-core/components/bootstrap/input/radio.html
2016-07-22 11:12:04 +02:00

16 lines
489 B
HTML

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