This commit is contained in:
Christian Wiwie 2020-03-14 22:29:11 +01:00
parent b46a23eab3
commit 0ea84cfb66
2 changed files with 3 additions and 2 deletions

View File

@ -45,7 +45,7 @@ function addHeightToggleHandler($item) {
var toggleId = "wall-item-body-toggle-" + itemId;
$item.wrap('<div id="' + wrapperId + '" class="wall-item-body-wrapper"></div>');
$("#" + wrapperId).append('<div class="wall-item-body-toggle" data-item-id="' + itemId + '" id="' + toggleId + '" ><a href="javascript:void(0)" class="wall-item-body-toggle-text">Show more ...</a></div>');
$("#" + wrapperId).append('<div class="wall-item-body-toggle" data-item-id="' + itemId + '" id="' + toggleId + '" ><a href="javascript:void(0)" class="wall-item-body-toggle-text">' + showmore_dyn_showmore_linktext + '</a></div>');
$item.addClass("limitable limit-height");
var $toggle = $("#" + toggleId);

View File

@ -71,5 +71,6 @@ function showmore_dyn_settings(&$a,&$o) {
function showmore_dyn_script() {
$limitHeight = DI::pConfig()->get(local_user(), 'showmore_dyn', 'limitHeight' );
DI::page()['htmlhead'] .= '<script>var postLimitHeight = ' . intval($limitHeight) . ';</script>';
$showmore_dyn_showmore_linktext = DI::l10n()->t('Show more ...');
DI::page()['htmlhead'] .= '<script>var postLimitHeight = ' . intval($limitHeight) . '; var showmore_dyn_showmore_linktext = "' . $showmore_dyn_showmore_linktext . '"</script>';
}