7e4b134298
Conflicts: bigbluebutton-html5/app/client/globals.coffee bigbluebutton-html5/app/client/main.html bigbluebutton-html5/app/client/views/sharedTemplates.html
19 lines
544 B
HTML
Executable File
19 lines
544 B
HTML
Executable File
<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>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{#if i_class}}
|
|
<i class="{{i_class}}"></i>
|
|
{{/if}}
|
|
{{#if label}}
|
|
<span>{{label}}</span>
|
|
{{/if}}
|
|
{{#if span}}
|
|
<span></span>
|
|
{{/if}}
|
|
</button>
|
|
</template>
|