Make status expandable into conversation.

This commit is contained in:
Roger Braun 2017-02-04 13:53:28 +01:00
parent b420b5838c
commit 2269e815e1
2 changed files with 15 additions and 6 deletions

View file

@ -30,6 +30,12 @@
<timeago :since="status.created_at" :auto-update="60"></timeago>
</router-link>
</small>
<template v-if="expandable">
-
<small>
<a href="#" @click.prevent="toggleExpanded" >Expand</a>
</small>
</template>
<small v-if="!status.is_local" class="source_url">
<a :href="status.external_url" target="_blank" >Source</a>
</small>
@ -122,8 +128,4 @@
padding-right: 1em;
border-bottom: 1px solid;
}
.status-el:last-child .status {
border-bottom: none
}
</style>