From 4da96ee98035956620dcb80e4a76832e3d4ff168 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Tue, 30 Apr 2019 17:35:53 +0200 Subject: Remove 'doreply' JS function --- view/js/main.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'view/js') diff --git a/view/js/main.js b/view/js/main.js index d6bdc8238..8f644dc8e 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -234,6 +234,7 @@ function handle_comment_form(e) { form.find(':input[name=parent]').val(emptyCommentElm.replace(/\D/g,'')); var btn = form.find(':button[type=submit]').html(); form.find(':button[type=submit]').html(btn.replace(/<[^>]*>/g, '').trim()); + form.find(':button[type=submit]').prop('title', ''); } }); @@ -1143,15 +1144,6 @@ function dolike(ident, verb) { liking = 1; } -function doreply(parent, ident, owner) { - form = $('#comment-edit-form-' + parent.toString()); - form.find('input[name=parent]').val(ident); - var btn = form.find('button[type=submit]').html().replace(/<[^>]*>/g, '').trim(); - form.find('button[type=submit]').html(' ' + btn); - form.find('textarea').val("@{" + owner + "}\n"); - $('#comment-edit-text-' + parent.toString()).focus(); -} - function doprofilelike(ident, verb) { $.get('like/' + ident + '?verb=' + verb, function() { window.location.href=window.location.href; }); } -- cgit v1.2.3