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) {
|
||||||
updateTitle = function() {
|
ready(function () {
|
||||||
|
updateTitle = function () {
|
||||||
document.title = "Tiny Tiny RSS";
|
document.title = "Tiny Tiny RSS";
|
||||||
};
|
};
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
dojo.addOnLoad(function() {
|
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
||||||
hash_set = function() { };
|
ready(function () {
|
||||||
hash_get = function() { };
|
hash_set = function () {
|
||||||
|
};
|
||||||
|
hash_get = function () {
|
||||||
|
};
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue