plugins: use require() to hook into dojo
parent
fd539f2800
commit
f6d2787a8e
@ -1,5 +1,7 @@
|
||||
dojo.addOnLoad(function() {
|
||||
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
||||
ready(function () {
|
||||
updateTitle = function () {
|
||||
document.title = "Tiny Tiny RSS";
|
||||
};
|
||||
});
|
||||
});
|
||||
|
@ -1,4 +1,9 @@
|
||||
dojo.addOnLoad(function() {
|
||||
hash_set = function() { };
|
||||
hash_get = function() { };
|
||||
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
||||
ready(function () {
|
||||
hash_set = function () {
|
||||
};
|
||||
hash_get = function () {
|
||||
};
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue