Hi guys,
I have a huge problem with my app in ember js.
I have a chat view in my app and the structure is a bit similar too:
<div id="chat-content">
<div class="message">
</div>
<div class="message">
</div>
etc..
</div>
I’m making a scroller on id chat-content with:
#chat-content {
height: auto;
max-height: 520px;
overflow-x: hidden;
}
But as a chat view i need that the chat view starts at the end of scroll. How can i get this? (there exist a scroll view for ember js?)