/* global Plugins, __, require, PluginHost */ const _shorten_expanded_threshold = 1.5; //window heights Plugins.Shorten_Expanded = { expand: function(id) { const row = $(id); if (row) { const content = row.querySelector(".content-shrink-wrap"); const link = row.querySelector(".expand-prompt"); if (content) content.removeClassName("content-shrink-wrap"); if (link) Element.hide(link); } return false; } } require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) { ready(function() { PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function(row) { window.setTimeout(function() { if (row) { const content = row.querySelector(".content-inner"); //console.log('shorten', row.offsetHeight, 'vs', _shorten_expanded_threshold * window.innerHeight); if (content && row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) { const attachments = row.querySelector(".attachments-inline"); // optional content.innerHTML = `
${content.innerHTML} ${attachments ? attachments.innerHTML : ''}
`; if (attachments) attachments.innerHTML = ""; dojo.parser.parse(content); } } }, 150); return true; }); }); });