You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
195 B

7 years ago
  1. a
  2. <ul id="messages">
  3. <li ng-repeat="msg in msgs track by $index">
  4. {{msg}}
  5. </li>
  6. </ul>
  7. <form>
  8. <input id="m" ng-model="msg.text" /><button ng-click="send()">Send</button>
  9. </form>