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

github.com/janraasch/hugo-scroll.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Raasch <jan@janraasch.com>2020-09-21 14:35:37 +0300
committerJan Raasch <jan@janraasch.com>2020-09-21 14:35:37 +0300
commitb664d26b0c2188baa1685a74bf526959a70597dc (patch)
treee5b7d91e8a93b517289a0c24a5877658e8b1e782
parentedc14934d0c7e8ff4e92ea5a0c5f47e865d11691 (diff)
fix: quote icons
icon-quote-left and icon-quote-right are only included on font-awesome-ie7.css
-rw-r--r--static/js/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/js/index.js b/static/js/index.js
index 820d3c1..2356db8 100644
--- a/static/js/index.js
+++ b/static/js/index.js
@@ -106,8 +106,8 @@ var $sitehead = $("#site-head");
$("ul li").before(
'<span class="bult fa fa-asterisk icon-asterisk"></span>'
);
- $("blockquote p").prepend('<span class="quo icon-quote-left"></span>');
- $("blockquote p").append('<span class="quo icon-quote-right"></span>');
+ $("blockquote p").prepend('<span class="quo fa fa-quote-left"></span>');
+ $("blockquote p").append('<span class="quo fa fa-quote-right"></span>');
});
$post.each(function () {