Skip to content

Instantly share code, notes, and snippets.

@Epotignano
Last active May 26, 2022 06:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Epotignano/49b2c630e55ac8f49c38 to your computer and use it in GitHub Desktop.
Save Epotignano/49b2c630e55ac8f49c38 to your computer and use it in GitHub Desktop.
<div>
<div>
<ul>
<li ng-repeat="message in ctrl.room.messages">
{{message.author}}: {{ message.content }}
</li>
</ul>
</div>
<form ng-submit="ctrl.send()">
<text-area ng-model="ctrl.message.content"></text-area>
<button type="submit"></button>
</form>
</div>
<!--- if were components -->
<messages list="ctrl.room.messages">
</messages>
<chat-input push-to="ctrl.room.messages">
</chat-input>
@Masterrag
Copy link

chat.html

@Masterrag
Copy link

[Masterrag](https://gist.github.com/Masterrag) commented

@Masterrag
Copy link

Masterrag commented

chat.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment