Browse Source

fix reply context display for long posts

closes #62
pull/82/head
Aaron Parecki 7 years ago
parent
commit
29dcea294d
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 10 additions and 2 deletions
  1. +10
    -2
      views/new-post.php

+ 10
- 2
views/new-post.php View File

@ -17,6 +17,7 @@
<div> <div>
<img src="" class="post-img hidden"> <img src="" class="post-img hidden">
<div class="author"><span class="name"></span> <span class="url"></span></div> <div class="author"><span class="name"></span> <span class="url"></span></div>
<h4 class="post-name hidden"></h4>
<span class="content"></span> <span class="content"></span>
</div> </div>
</div> </div>
@ -140,6 +141,8 @@
border: 1px #ccc solid; border: 1px #ccc solid;
border-radius: 4px; border-radius: 4px;
background: #f4f4f4; background: #f4f4f4;
max-height: 140px;
overflow-y: hidden;
} }
.reply-context img.author-img { .reply-context img.author-img {
border-radius: 4px; border-radius: 4px;
@ -342,8 +345,13 @@ $(function(){
} }
$(".reply-context .content").text(data.entry.content.text); $(".reply-context .content").text(data.entry.content.text);
$(".reply-context .name").text(data.entry.author.name);
$(".reply-context .url").text(data.entry.author.url);
if(data.entry.name) {
$(".reply-context .post-name").text(data.entry.name).removeClass('hidden');
} else {
$(".reply-context .post-name").addClass('hidden');
}
$(".reply-context .author .name").text(data.entry.author.name);
$(".reply-context .author .url").text(data.entry.author.url);
$(".reply-context img.author-img").attr('src', data.entry.author.photo); $(".reply-context img.author-img").attr('src', data.entry.author.photo);
if(data.entry.photo) { if(data.entry.photo) {
$(".reply-context img.post-img").attr('src', data.entry.photo[0]).removeClass('hidden'); $(".reply-context img.post-img").attr('src', data.entry.photo[0]).removeClass('hidden');

Loading…
Cancel
Save