summaryrefslogtreecommitdiff
path: root/plugins/no_title_counters/init.js
blob: 6c0cb38e27d07b76077024da9c5a845c6154e644 (plain)
1
2
3
4
5
6
7
8
9
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";
			};
		});
	});
});