Fix comment timeline bug

This commit is contained in:
Daniel Supernault 2018-06-03 23:40:17 -06:00
parent c35287f6ad
commit aaf94d56cc
4 changed files with 5 additions and 5 deletions

2
public/js/app.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
{
"/js/app.js": "/js/app.js?id=2c6c809a71f43c33dd4b",
"/js/app.js": "/js/app.js?id=3a0df5c7faec6dfd614c",
"/css/app.css": "/css/app.css?id=ede5557443f098707138",
"/js/timeline.js": "/js/timeline.js?id=1ade82addcc153e4ff66"
}

View File

@ -24,7 +24,7 @@ $(document).ready(function() {
if($('.status-container').length == 1) {
var comments = el.parents().eq(3).find('.comments');
} else {
var comments = el.parents().eq(2).find('.comments');
var comments = el.parents().eq(1).find('.comments');
}
var comment = '<p class="mb-0"><span class="font-weight-bold pr-1"><bdi><a class="text-dark" href="' + profile + '">' + username + '</a></bdi></span><span class="comment-text">'+ commenttext + '</span><span class="float-right"><a href="' + permalink + '" class="text-dark small font-weight-bold">1s</a></span></p>';

View File

@ -35,7 +35,7 @@ $(document).ready(function() {
.then(function (res) {
var likes = ls.get('likes');
var action = false;
var counter = el.parents().eq(2).find('.like-count');
var counter = el.parents().eq(1).find('.like-count');
var count = res.data.count;
var heart = el.find('.status-heart');
@ -54,7 +54,7 @@ $(document).ready(function() {
}
ls.set('likes', likes);
console.log(action + ' - ' + $(this).data('id') + ' like event');
console.log(action + ' - ' + id + ' like event');
});
});
});