Remove unnecessary id
Encapsulating the feature in a angular directive let us avoid setting global ids for elements.
This commit is contained in:
parent
5f25a96b51
commit
5cd36f0779
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
<form class="form form-horizontal" ng-submit="sendMessage()">
|
<form class="form form-horizontal" ng-submit="sendMessage()">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<input id="sendMessage" type="text" class="form-control monospace" autocomplete="off" >
|
<input type="text" class="form-control monospace" autocomplete="off" >
|
||||||
<span class="input-group-btn">
|
<span class="input-group-btn">
|
||||||
<button class="btn btn-default btn-primary">Send</button>
|
<button class="btn btn-default btn-primary">Send</button>
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in a new issue