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

19 lines
559 B
HTML

<template name="inputSelect">
{{#baseComponent (extend this
base='baseSelect'
mixins=(concat 'select2 ' this.mixins)
wrappers=(concat ''
(valueIf reactive this.label 'wrapperLabel ' '')
this.wrappers
)
options=(clone this.options
multiple=(valueIf this.multiple true false)
minimumResultsForSearch=(valueIf this.hideSearch
-1 this.minimumResultsForSearch
)
)
)}}
{{>UI.contentBlock}}
{{/baseComponent}}
</template>