From 385829b274080806a19bf7c65c0270a1561a36fb Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 12 Nov 2023 17:53:13 +0300 Subject: update for App.Hash functions --- init.js | 8 ++++---- 1 file 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 {}; }; + }); }); }); -- cgit v1.2.3