summaryrefslogtreecommitdiff
path: root/js/Headlines.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/Headlines.js')
-rwxr-xr-xjs/Headlines.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/js/Headlines.js b/js/Headlines.js
index 0c8ce5abf..9a9576573 100755
--- a/js/Headlines.js
+++ b/js/Headlines.js
@@ -365,13 +365,13 @@ define(["dojo/_base/declare"], function (declare) {
`;
}
- if (row != null) {
- const tmp = document.createElement("div");
- tmp.innerHTML = row;
- dojo.parser.parse(tmp);
+ const tmp = document.createElement("div");
+ tmp.innerHTML = row;
+ dojo.parser.parse(tmp);
- $("headlines-frame").appendChild(tmp.firstChild);
- }
+ PluginHost.run(PluginHost.HOOK_HEADLINE_RENDERED, tmp.firstChild);
+
+ $("headlines-frame").appendChild(tmp.firstChild);
},
onLoaded: function (transport, offset) {
const reply = App.handleRpcJson(transport);