1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:55:56 +00:00

plugins: use require() to hook into dojo

This commit is contained in:
Andrew Dolgov
2016-08-10 12:22:55 +03:00
parent fd539f2800
commit f6d2787a8e
4 changed files with 16 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
dojo.addOnLoad(function () {
ready(function () {
PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function (row) {
if (row) {
console.log("af_zz_noautoplay!");
@@ -37,7 +37,5 @@ require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
return true;
});
});
});