summaryrefslogtreecommitdiff
path: root/plugins/shorten_expanded
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-07 22:56:34 +0300
committerAndrew Dolgov <[email protected]>2018-12-07 22:56:34 +0300
commit7adf937936d4433890941821bb3abc5dc3ac7073 (patch)
tree94dc6769c0649b6b1b7323fbce52a314d75c5c95 /plugins/shorten_expanded
parentc1d9cd3c22c58ce4a746f2718702c58c517a4c42 (diff)
shorten_expanded: use dojo button, don't break attachment dropdown, other fixes
Diffstat (limited to 'plugins/shorten_expanded')
-rw-r--r--plugins/shorten_expanded/init.css6
-rw-r--r--plugins/shorten_expanded/init.js42
2 files changed, 29 insertions, 19 deletions
diff --git a/plugins/shorten_expanded/init.css b/plugins/shorten_expanded/init.css
index 920e38415..0966aa1f9 100644
--- a/plugins/shorten_expanded/init.css
+++ b/plugins/shorten_expanded/init.css
@@ -1,9 +1,9 @@
-div.contentSizeWrapper {
+.content-shrink-wrap {
overflow : hidden;
text-overflow: ellipsis;
height : 800px;
}
-button.expandPrompt {
- margin-top : 20px;
+.expand-prompt {
+ margin-top : 16px;
}
diff --git a/plugins/shorten_expanded/init.js b/plugins/shorten_expanded/init.js
index 577ed880e..6371bd1c6 100644
--- a/plugins/shorten_expanded/init.js
+++ b/plugins/shorten_expanded/init.js
@@ -1,17 +1,19 @@
-var _shorten_expanded_threshold = 1.5; //window heights
+const _shorten_expanded_threshold = 1.5; //window heights
-function expandSizeWrapper(id) {
- const row = $(id);
+Plugins.Shorten_Expanded = {
+ expand: function(id) {
+ const row = $(id);
- if (row) {
- const content = row.select(".contentSizeWrapper")[0];
- const link = row.select(".expandPrompt")[0];
+ if (row) {
+ const content = row.select(".content-shrink-wrap")[0];
+ const link = row.select(".expand-prompt")[0];
- if (content) content.removeClassName("contentSizeWrapper");
- if (link) Element.hide(link);
- }
+ if (content) content.removeClassName("content-shrink-wrap");
+ if (link) Element.hide(link);
+ }
- return false;
+ return false;
+ }
}
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
@@ -19,19 +21,27 @@ require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function(row) {
window.setTimeout(function() {
if (row) {
+
const c_inner = row.select(".content-inner")[0];
const c_inter = row.select(".intermediate")[0];
if (c_inner && c_inter &&
row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
- c_inter.parentNode.removeChild(c_inter);
+ let tmp = document.createElement("div");
+
+ c_inter.select("> *:not([class*='attachments'])").each(function(p) {
+ p.parentNode.removeChild(p);
+ tmp.appendChild(p);
+ });
+
+ c_inner.innerHTML = `<div class="content-shrink-wrap">
+ ${c_inner.innerHTML}
+ ${tmp.innerHTML}</div>
+ <button dojoType="dijit.form.Button" class="alt-info expand-prompt" onclick="return Plugins.Shorten_Expanded.expand('${row.id}')" href="#">
+ ${__("Click to expand article")}</button>`;
- c_inner.innerHTML = "<div class='contentSizeWrapper'>" +
- c_inner.innerHTML +
- c_inter.innerHTML + "</div>" +
- "<button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' href='#'>" +
- __("Click to expand article") + "</button>";
+ dojo.parser.parse(c_inner);
Headlines.unpackVisible();
}