From 3bb72557df594ac0138e497ecfac92d1fe593599 Mon Sep 17 00:00:00 2001 From: shivani Date: Jul 27 2017 06:09:58 +0000 Subject: Scroll to the comment section on clicking reply. --- diff --git a/pagure/templates/issue.html b/pagure/templates/issue.html index f2669da..8290c6d 100644 --- a/pagure/templates/issue.html +++ b/pagure/templates/issue.html @@ -553,7 +553,11 @@ function setup_reply_btns() { } $( "#comment" ).val(_output.join("\n")); } - ); + ).click(function(){ + $('html, body').animate({ + scrollTop: $("#comment").offset().top + }, 2000); +}); }; $(document).ready(function() {