]> git.wh0rd.org - tt-rss.git/blob - plugins/no_title_counters/init.js
plugins: use require() to hook into dojo
[tt-rss.git] / plugins / no_title_counters / init.js
1 require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
2 ready(function () {
3 updateTitle = function () {
4 document.title = "Tiny Tiny RSS";
5 };
6 });
7 });