another fix to readmore.js and update patch file

This commit is contained in:
Mario Vavti
2016-10-10 14:27:49 +02:00
parent b2cc2e6765
commit 78c63c480a
2 changed files with 21 additions and 3 deletions

View File

@@ -79,7 +79,7 @@
maxHeight: 'none',
overflow: 'hidden'
}).insertAfter(element),
expandedHeight = el.outerHeight(),
expandedHeight = 100 + '%',
cssMaxHeight = parseInt(el.css({maxHeight: ''}).css('max-height').replace(/[^-\d\.]/g, ''), 10),
defaultHeight = element.data('defaultHeight');
@@ -246,7 +246,7 @@
collapsedHeight = $element.data('collapsedHeight');
if ($element.height() <= collapsedHeight) {
newHeight = 100 + '%';
newHeight = $element.data('expandedHeight');
newLink = 'lessLink';
expanded = true;
}