diff options
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/view/js/main.js b/view/js/main.js index aaadff99b..e4cfcf7b2 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -132,6 +132,19 @@ function inserteditortag(BBcode, id) { return true; } +function insertCommentAttach(comment,id) { + + activeCommentID = id; + activeCommentText = comment; + + $('body').css('cursor', 'wait'); + + $('#invisible-comment-upload').trigger('click'); + + return false; + +} + function insertCommentURL(comment, id) { reply = prompt(aStr.linkurl); if(reply && reply.length) { |