summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {}; };
+ });
});
});