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.

18 lines
487 B

8 years ago
  1. <md-content class="md-padding">
  2. <md-toolbar layout="row" class="o_purple300">
  3. <div class="md-toolbar-tools">
  4. <span>chat</span>
  5. </div>
  6. </md-toolbar>
  7. <form>
  8. <input id="m" ng-model="msg.text" /><button ng-click="send()">Send</button>
  9. </form>
  10. <md-list flex>
  11. <md-subheader class="md-no-sticky">3 line item (with hover)</md-subheader>
  12. <md-list-item ng-repeat="msg in msgs" ng-click="null">
  13. <p>{{msg.text}}</p>
  14. </md-list-item>
  15. </md-list>
  16. </md-content>