mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 15:25:59 +00:00
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
|
ready(function () {
|
|
updateTitle = function () {
|
|
document.title = "Tiny Tiny RSS";
|
|
};
|
|
});
|
|
});
|