Archived
1
0
This commit is contained in:
Jeff Becker 2019-03-02 11:22:59 -05:00
parent 686cfb7831
commit 118f7f4ee0
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -45,7 +45,8 @@
{{#post.OP}} {{#post.OP}}
<script type="text/javascript"> <script type="text/javascript">
fetch("/api/find?hash={{post.PostHash}}").then(function(resp) { fetch("/api/find?hash={{post.PostHash}}").then(function(resp) {
var j= resp.json(); return resp.json();
}).then(function(j) {
console.log(j); console.log(j);
if (j.legnth) { if (j.legnth) {
var e = document.getElementById("post_body_{{post.PostHash}}"); var e = document.getElementById("post_body_{{post.PostHash}}");