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

19 lines
544 B
HTML
Raw Normal View History

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