summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-11-12 17:53:13 +0300
committerAndrew Dolgov <[email protected]>2023-11-12 17:53:13 +0300
commit385829b274080806a19bf7c65c0270a1561a36fb (patch)
treea7d76e79abc78af3e251131f48affdd7deb9c182
parentd9010912a4d2832f1bb5dc8077b5a53120c0b009 (diff)
update for App.Hash functionsHEADmaster
-rw-r--r--init.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.js b/init.js
index fc45967..2d30ce6 100644
--- a/init.js
+++ b/init.js
@@ -1,9 +1,9 @@
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
ready(function () {
- hash_set = function () {
- };
- hash_get = function () {
- };
+ PluginHost.register(PluginHost.HOOK_INIT_COMPLETE, () => {
+ App.Hash.set = function () { };
+ App.Hash.get = function () { return {}; };
+ });
});
});