From 5fbd5aaf10031e24cb300ba5d1e906d853e73fd1 Mon Sep 17 00:00:00 2001 From: Cutls Date: Sat, 13 Jul 2019 00:01:09 +0900 Subject: [PATCH] Fix: layout --- app/js/tl/datails.js | 35 ++++++++++++----------------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/app/js/tl/datails.js b/app/js/tl/datails.js index 53e75e97..cebb7f7b 100644 --- a/app/js/tl/datails.js +++ b/app/js/tl/datails.js @@ -99,7 +99,9 @@ function details(id, acct_id, tlid, mode) { if ($("#toot-this div").hasClass("cvo")) { $("#toot-this").removeClass("cvo"); } else { - $("#toot-this").addClass("cvo"); + if(!$("#toot-this .cvo").hasClass("cvo")){ + $("#toot-this").addClass("cvo"); + } } if (!$("#activator").hasClass("active")) { $('#det-col').collapsible('open', 4); @@ -125,14 +127,7 @@ function replyTL(id, acct_id) { }) } } else { - var start = "https://" + domain + "/api/v1/statuses/" + id; - var i = { - method: 'GET', - headers: { - 'content-type': 'application/json', - 'Authorization': 'Bearer ' + at - }, - } + return false } fetch(start, i).then(function (response) { return response.json(); @@ -155,20 +150,6 @@ function replyTL(id, acct_id) { if (json[rep]) { replyTL(json[rep][0], acct_id); } - } else { - var templete = parse([json], '', acct_id, "", "", mute); - if (templete != "") { - $("#toot-reply .no-data").hide(); - } - $("#toot-reply").prepend(templete); - $("#toot-reply .hide").html(lang.lang_details_filtered); - $("#toot-reply .by_filter").css("display", "block"); - $("#toot-reply .by_filter").removeClass("hide"); - jQuery("time.timeago").timeago(); - var rep = "in_reply_to_id"; - if (json[rep]) { - replyTL(json[rep], acct_id); - } } }); @@ -228,6 +209,14 @@ function context(id, acct_id) { $("#toot-after .hide").html(lang.lang_details_filtered); $("#toot-after .by_filter").css("display", "block"); $("#toot-after .by_filter").removeClass("hide"); + var templete = parse(json.ancestors, '', acct_id, "", "", mute); + if (templete != "") { + $("#toot-reply .no-data").hide(); + } + $("#toot-reply").prepend(templete); + $("#toot-reply .hide").html(lang.lang_details_filtered); + $("#toot-reply .by_filter").css("display", "block"); + $("#toot-reply .by_filter").removeClass("hide"); jQuery("time.timeago").timeago(); }