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:
authorVincent Tam <sere@live.hk>2019-05-20 22:21:53 +0300
committerVincent Tam <sere@live.hk>2019-05-20 22:29:17 +0300
commitc9e48180845fc19f8c111d551ba8b3faa67aa927 (patch)
tree41951ca99f41ce7b08a5620c76203e3c1d0a7611 /assets
parent37c259fc127f562561d5c90c145b61f90eee2070 (diff)
{static => assets}/css|js/staticman.css|js
1. Preparation pour i18n 2. Suppression du dialogue « modal » d'Edouardo Bourças
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"));