glowingbear-mainbox/directives/input.html

10 lines
416 B
HTML
Raw Normal View History

<form class="form form-horizontal" id="inputform" ng-submit="sendMessage()">
2013-10-27 21:41:27 +01:00
<div class="input-group">
<textarea id="{{inputId}}" class="form-control favorite-font" ng-trim="false" rows="1" autocomplete="on" ng-model="command" ng-focus="hideSidebar()">
</textarea>
2013-10-27 21:41:27 +01:00
<span class="input-group-btn">
<button class="btn btn-default btn-primary unselectable">Send</button>
2013-10-27 21:41:27 +01:00
</span>
</div>
</form>