ohif-viewer/Packages/ohif-core/components/bootstrap/input/radio.html

16 lines
490 B
HTML
Raw Normal View History

<template name="inputRadio">
{{#baseComponent (extend this
base='baseInput'
2016-07-14 16:25:39 +02:00
type='radio'
mixins=(concat 'input ' this.mixins)
labelAfter=(valueIf (isDefined this.labelAfter) this.labelAfter true)
2016-07-15 19:44:31 +02:00
labelClass=(concat 'checkboxLabel ' this.labelClass)
wrappers=(concat ''
(valueIf reactive this.label 'wrapperLabel ' '')
2016-07-14 16:25:39 +02:00
this.wrappers
)
)}}
{{>UI.contentBlock}}
{{/baseComponent}}
</template>