bigbluebutton-Github/bigbluebutton-html5/app/client/views/sharedTemplates.html
Oleksandr Zhurbenko 7e4b134298 Merge branch 'master' of https://github.com/bigbluebutton/bigbluebutton into meteor-ui
Conflicts:
	bigbluebutton-html5/app/client/globals.coffee
	bigbluebutton-html5/app/client/main.html
	bigbluebutton-html5/app/client/views/sharedTemplates.html
2015-07-03 12:48:05 -07:00

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>