mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 19:45:56 +00:00
add HOOK_HEADLINE_MUTATIONS, HOOK_HEADLINE_MUTATIONS_SYNCED
This commit is contained in:
@@ -17,6 +17,8 @@ const PluginHost = {
|
||||
HOOK_HEADLINE_RENDERED: 12,
|
||||
HOOK_COUNTERS_RECEIVED: 13,
|
||||
HOOK_COUNTERS_PROCESSED: 14,
|
||||
HOOK_HEADLINE_MUTATIONS: 15,
|
||||
HOOK_HEADLINE_MUTATIONS_SYNCED: 16,
|
||||
hooks: [],
|
||||
register: function (name, callback) {
|
||||
if (typeof(this.hooks[name]) == 'undefined')
|
||||
@@ -25,7 +27,7 @@ const PluginHost = {
|
||||
this.hooks[name].push(callback);
|
||||
},
|
||||
run: function (name, args) {
|
||||
//console.warn('PluginHost::run ' + name);
|
||||
//console.warn('PluginHost.run', name);
|
||||
|
||||
if (typeof(this.hooks[name]) != 'undefined')
|
||||
for (let i = 0; i < this.hooks[name].length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user