(postID)
| 182 | }; |
| 183 | }(); |
| 184 | var movePostHTML = function(postID) { |
| 185 | let $tmpl = document.getElementById('move-tmpl'); |
| 186 | if ($tmpl === null) { |
| 187 | return ""; |
| 188 | } |
| 189 | return $tmpl.innerHTML.replace(/POST_ID/g, postID); |
| 190 | } |
| 191 | var createPostEl = function(post, owned, singleUser) { |
| 192 | var $post = document.createElement('div'); |
| 193 | let p = H.createPost(post.id, "", post.body) |