Last active
May 26, 2022 06:53
-
-
Save Epotignano/49b2c630e55ac8f49c38 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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](https://gist.github.com/Masterrag) commented
Masterrag commented
chat.html
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
chat.html