Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/VincentTam/huginn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
Diffstat (limited to 'assets')
-rw-r--r--assets/css/staticman.css6
-rw-r--r--assets/js/staticman.js2
2 files changed, 6 insertions, 2 deletions
diff --git a/assets/css/staticman.css b/assets/css/staticman.css
index 178ee32..d76032d 100644
--- a/assets/css/staticman.css
+++ b/assets/css/staticman.css
@@ -52,7 +52,11 @@
margin-left: 1rem;
}
-form--loading:before {
+.staticman-comments .reply-target::before {
+ content: ' ↷ ';
+}
+
+.form--loading:before {
content: '';
}
diff --git a/assets/js/staticman.js b/assets/js/staticman.js
index 216d848..0d20fe1 100644
--- a/assets/js/staticman.js
+++ b/assets/js/staticman.js
@@ -45,7 +45,7 @@ $(document).ready(function() {
}
// record reply target when "reply to this comment" is pressed
- $('article.static-comment').on('click', 'a.btn', function (evt){
+ $('article.static-comment').on('click', 'a.reply-btn', function (evt){
var cmt = $(evt.delegateTarget);
$('input[name="fields[replyThread]"]').val(this.title);
$('input[name="fields[replyID]"]').val(cmt.attr("id"));