aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'view/js/main.js')
-rw-r--r--view/js/main.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 220898efd..2b13acc3d 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -640,7 +640,10 @@ function collapseHeight() {
var orgHeight = parseInt($(this).css('height'));
if(orgHeight > divmore_height) {
if(! $(this).hasClass('divmore')) {
- if($(window).scrollTop() + ($(window).height() - divmore_height) < $(this).offset().top) {
+
+ var trigger = $(window).scrollTop() + ($(window).height() - divmore_height) < $(this).offset().top ? true : false;
+
+ if(trigger) {
$(this).readmore({
speed: 0,
heightMargin: 50,