plugins: use require() to hook into dojo

This commit is contained in:
Andrew Dolgov
2016-08-10 12:22:55 +03:00
parent fd539f2800
commit f6d2787a8e
4 changed files with 16 additions and 11 deletions
+6 -4
View File
@@ -1,5 +1,7 @@
dojo.addOnLoad(function() {
updateTitle = function() {
document.title = "Tiny Tiny RSS";
};
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
ready(function () {
updateTitle = function () {
document.title = "Tiny Tiny RSS";
};
});
});