diff options
| author | shpuld <shp@cock.li> | 2018-04-11 19:34:40 +0300 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2018-04-11 19:34:40 +0300 |
| commit | a1f6ef1dcac2e79c5a116705ca11d6e7e51ed89c (patch) | |
| tree | 29adae381f962942683fe4f01952f56b2f33fdf0 /src/components/conversation/conversation.vue | |
| parent | 82ee24ec31ad89e82c6002fd0dc3593f47adfdb4 (diff) | |
Loads of fixes: notifs, autoload setting, overflow, faint text, reply form, status fadein.
Diffstat (limited to 'src/components/conversation/conversation.vue')
| -rw-r--r-- | src/components/conversation/conversation.vue | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue index 4000bce2..308e5e7d 100644 --- a/src/components/conversation/conversation.vue +++ b/src/components/conversation/conversation.vue @@ -8,7 +8,16 @@ </div> <div class="panel-body"> <div class="timeline"> - <status v-for="status in conversation" @goto="setHighlight" :key="status.id" :inlineExpanded="collapsable" :statusoid="status" :expandable='false' :focused="focused(status.id)" :inConversation='true' :highlight="highlight" :replies="getReplies(status.id)"></status> + <status + v-for="status in conversation" + @goto="setHighlight" :key="status.id" + :inlineExpanded="collapsable" :statusoid="status" + :expandable='false' :focused="focused(status.id)" + :inConversation='true' + :highlight="highlight" + :replies="getReplies(status.id)" + class="status-fadein"> + </status> </div> </div> </div> |
