Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function () {
- 'use strict';
- function updateAllPosts() {
- document.querySelectorAll('.post_type_reply').forEach(editPostHtml);
- }
- function editPostHtml(el) {
- // тут редактируем пост
- }
- function main() {
- window.PostF.__appendPost = window.PostF._appendPost;
- window.PostF._appendPost = function (post) {
- if (this.__appendPost(post)) {
- editPostHtml(document.getElementById(`post-${post.num}`));
- }
- };
- updateAllPosts();
- }
- main();
- })();
Advertisement
Add Comment
Please, Sign In to add comment