2016-08-10 09:22:55 +00:00
|
|
|
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
|
|
|
ready(function () {
|
2018-12-08 17:06:07 +00:00
|
|
|
PluginHost.register(PluginHost.HOOK_INIT_COMPLETE, () => {
|
|
|
|
App.updateTitle = function () {
|
|
|
|
document.title = "Tiny Tiny RSS";
|
|
|
|
};
|
|
|
|
});
|
2016-08-10 09:22:55 +00:00
|
|
|
});
|
2013-07-25 10:54:46 +00:00
|
|
|
});
|