summaryrefslogtreecommitdiff
path: root/plugins/shorten_expanded/init.js
blob: 11ecbc5d5dea17b8af8326ff9d15d9cee581700b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
var _shorten_expanded_threshold = 1.5; //window heights

function expandSizeWrapper(id) {
	try {
		var row = $(id);

		console.log(row);

		if (row) {
			var content = row.select(".contentSizeWrapper")[0];
			var link = row.select(".expandPrompt")[0];

			if (content) content.removeClassName("contentSizeWrapper");
			if (link) Element.hide(link);

		}
	} catch (e) {
		exception_error("expandSizeWrapper", e);
	}

	return false;

}

dojo.addOnLoad(function() {
	PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function(row) {
		if (getInitParam('cdm_expanded')) {

			window.setTimeout(function() {
				if (row) {
					if (row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
						var content = row.select(".cdmContentInner")[0];

						if (content) {
							var wrapperHeight = Math.round(window.innerHeight * 0.8) + 'px';

							content.innerHTML = "<div class='contentSizeWrapper' style='height : "+wrapperHeight+"'>" +
								content.innerHTML + "</div><button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' "+
								"href='#'>" + __("Click to expand article") + "</button>";

						}
					}
				}
			}, 150);
		}
	});
});