X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4cadef92cdc776f7da86edfd1bd3547f4d91c816..4167e7083d75589e9dbbaa05bfcb43d27b60b42f:/src/wolnelektury/static/js/base.js?ds=inline

diff --git a/src/wolnelektury/static/js/base.js b/src/wolnelektury/static/js/base.js
index adc340bfb..bdb5fbee7 100644
--- a/src/wolnelektury/static/js/base.js
+++ b/src/wolnelektury/static/js/base.js
@@ -57,6 +57,14 @@
             })
         });
 
+        $('.more').each(function () {
+            $(this).shorten({
+                showChars: 150,
+                moreText: "więcej",
+                lessText: "mniej"
+            });
+        });
+
 
 
         (function() {
@@ -234,6 +242,26 @@
         tlite(function (el) {
             return $(el).hasClass('tlite-tooltip');
         });
+
+        /* more/less switch from https://codepen.io/JoshBlackwood/pen/pEwHe */
+        // Hide the extra content initially, using JS so that if JS is disabled, no problemo:
+        $('.read-more-content').addClass('hide');
+        $('.read-more-show, .read-more-hide').removeClass('hide');
+
+        // Set up the toggle effect:
+        $('.read-more-show').on('click', function(e) {
+          $(this).next('.read-more-content').removeClass('hide');
+          $(this).addClass('hide');
+          e.preventDefault();
+        });
+
+        // Changes contributed by @diego-rzg
+        $('.read-more-hide').on('click', function(e) {
+          var p = $(this).parent('.read-more-content');
+          p.addClass('hide');
+          p.prev('.read-more-show').removeClass('hide'); // Hide only the preceding "Read More"
+          e.preventDefault();
+        });
     });
 })(jQuery);