add PluginHost.HOOK_INIT_COMPLETE (and make no_title_counters use it)
parent
f3737c0b24
commit
a400a8ffc1
@ -1,7 +1,9 @@
|
|||||||
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
||||||
ready(function () {
|
ready(function () {
|
||||||
App.updateTitle = function () {
|
PluginHost.register(PluginHost.HOOK_INIT_COMPLETE, () => {
|
||||||
document.title = "Tiny Tiny RSS";
|
App.updateTitle = function () {
|
||||||
};
|
document.title = "Tiny Tiny RSS";
|
||||||
|
};
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue