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

github.com/xaprb/story.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorBaron Schwartz <xaprb@users.noreply.github.com>2018-09-16 23:40:55 +0300
committerBaron Schwartz <xaprb@users.noreply.github.com>2018-09-16 23:40:55 +0300
commit0bf4d68fa98e2ccded2d60b13f66d08277d36603 (patch)
treea22afce96794891856316c3ed152793958ff2a92 /static
parent8a8b7cf04e4625c9d3725526c5d055cac9998658 (diff)
fix comments
Diffstat (limited to 'static')
-rw-r--r--static/js/story.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/js/story.js b/static/js/story.js
index eab1722..c287f84 100644
--- a/static/js/story.js
+++ b/static/js/story.js
@@ -7,7 +7,7 @@ $( function() {
});
// Render perspective book images, if <body> has the class
-// -feature-3dbook-covers
+// feature-3dbook-covers
$( function() {
$( "body.feature-3dbook-covers article a" ).has( "img[src~='3dbook']" ).each(function(i, e) {
$( this ).addClass("book");
@@ -16,7 +16,7 @@ $( function() {
});
// Highlight code listings, if <body> has the class
-// -feature-highlight
+// feature-highlight
$( function() {
if ( $( "body.feature-highlight:not(.feature-nohighlight)" ).length ) {
hljs.initHighlightingOnLoad();