Update compiled assets, fixes #595

pull/605/head
Daniel Supernault 2018-11-28 19:27:38 -07:00
rodzic 1ca76b3a3c
commit a0b00ce434
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
5 zmienionych plików z 6 dodań i 6 usunięć

File diff suppressed because one or more lines are too long

Wyświetl plik

@ -1,5 +1,5 @@
{
"/js/components.js": "/js/components.js?id=1830e28a5b89d62c516d",
"/js/components.js": "/js/components.js?id=9b43be8feb8e7d974d25",
"/js/app.js": "/js/app.js?id=763d01bb175be69c8ad3",
"/css/app.css": "/css/app.css?id=0f11643b1635ebda5e1b",
"/js/timeline.js": "/js/timeline.js?id=415bfde862ab8c5b4548",

Wyświetl plik

@ -3,7 +3,7 @@ import BootstrapVue from 'bootstrap-vue'
Vue.use(BootstrapVue);
pixelfed.readmore = () => {
$(document).find('.read-more').each(function(k,v) {
$('.read-more').each(function(k,v) {
let el = $(this);
let attr = el.attr('data-readmore');
if(typeof attr !== typeof undefined && attr !== false) {

Wyświetl plik

@ -23,7 +23,7 @@
<span class="pr-3" style="overflow: hidden;">
<div class="font-weight-bold pr-1"><bdi><a class="text-dark" :href="comment.account.url" :title="comment.account.username">{{l(comment.account.username)}}</a></bdi>
</div>
<div class="read-more" style="overflow: hidden;">
<div class="read-more" style="overflow: hidden;" :id="comment.id + '-reply-readmore'">
<span class="comment-text" v-html="comment.content" style="overflow: hidden;"></span>
</div>
</span>
@ -51,7 +51,7 @@ export default {
props: ['post-id', 'post-username', 'user'],
data() {
return {
results: {},
results: null,
pagination: {},
min_id: 0,
max_id: 0,

Wyświetl plik

@ -91,7 +91,7 @@
<div class="status-comment">
<p class="mb-1 read-more" style="overflow: hidden;">
<span class="font-weight-bold pr-1">{{statusUsername}}</span>
<span class="comment-text"></span>
<span class="comment-text" :id="status.id + '-status-readmore'"></span>
</p>
<post-comments :user="this.user" :post-id="statusId" :post-username="statusUsername"></post-comments>
</div>