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

15 lines
468 B
HTML

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