mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-16 05:21:12 +02:00
10 lines
246 B
JavaScript
10 lines
246 B
JavaScript
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
|
ready(function () {
|
|
PluginHost.register(PluginHost.HOOK_INIT_COMPLETE, () => {
|
|
App.updateTitle = function () {
|
|
document.title = "Tiny Tiny RSS";
|
|
};
|
|
});
|
|
});
|
|
});
|