summaryrefslogtreecommitdiff
path: root/plugins/shorten_expanded
diff options
context:
space:
mode:
authorHeiko Adams <[email protected]>2016-08-19 17:25:05 +0200
committerHeiko Adams <[email protected]>2016-08-19 17:25:05 +0200
commit2842cf6e4563d1665741dd4c151798e6e282c60b (patch)
tree6aa8c94dd1d3ae81976dd154ee6ca46eb31908f1 /plugins/shorten_expanded
parent94e3a9ab44d82e0d7052d5e2e40496230b5f21a4 (diff)
parentc565a0cc21a6ee3e74ac9bc0cf4bfdde7cc84efd (diff)
Merge branch 'master' into german-translation
Diffstat (limited to 'plugins/shorten_expanded')
-rw-r--r--plugins/shorten_expanded/init.js34
1 files changed, 19 insertions, 15 deletions
diff --git a/plugins/shorten_expanded/init.js b/plugins/shorten_expanded/init.js
index 5e9e84aec..ffec6271d 100644
--- a/plugins/shorten_expanded/init.js
+++ b/plugins/shorten_expanded/init.js
@@ -22,26 +22,30 @@ function expandSizeWrapper(id) {
}
-dojo.addOnLoad(function() {
- PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function(row) {
- if (getInitParam('cdm_expanded')) {
+require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
- window.setTimeout(function() {
- if (row) {
- if (row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
- var content = row.select(".cdmContentInner")[0];
+ ready(function() {
+ PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function(row) {
+ if (getInitParam('cdm_expanded')) {
- if (content) {
- content.innerHTML = "<div class='contentSizeWrapper'>" +
- content.innerHTML + "</div><button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' "+
- "href='#'>" + __("Click to expand article") + "</button>";
+ window.setTimeout(function() {
+ if (row) {
+ if (row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
+ var content = row.select(".cdmContentInner")[0];
+ if (content) {
+ content.innerHTML = "<div class='contentSizeWrapper'>" +
+ content.innerHTML + "</div><button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' "+
+ "href='#'>" + __("Click to expand article") + "</button>";
+
+ }
}
}
- }
- }, 150);
- }
+ }, 150);
+ }
- return true;
+ return true;
+ });
});
+
});