bigbluebutton-Github/bigbluebutton-html5/app/client/views/sharedTemplates.html

12 lines
410 B
HTML
Raw Normal View History

<template name="makeButton">
2015-05-12 23:48:43 +08:00
<button type="submit" id="{{id}}" class="btn {{btn_class}}" {{isDisabled}} rel="{{rel}}" data-placement="{{data_placement}}" title="{{title}}" style="{{style}}">
{{#if text}}
<span>{{text}}</span>
2015-05-13 03:47:58 +08:00
{{else}}
{{#if i_class}}
<i class="{{i_class}}"></i><span>{{label}}</span>
2015-05-13 03:47:58 +08:00
{{/if}}
2015-05-12 23:48:43 +08:00
{{/if}}
</button>
</template>