diff --git a/index.html b/index.html
index 7fd9545af..7d1c8e59a 100755
--- a/index.html
+++ b/index.html
@@ -806,7 +806,7 @@
clearOnRender: 0,
storageManager:{
- autoload: 0,
+ autoload: 1,
storeComponents: 1,
storeStyles: 1,
},
@@ -1173,6 +1173,14 @@
},
});
+ editor.on('storage:store', function(store) {
+ console.log('Stored', store);
+ });
+
+ editor.on('storage:load', function(loaded) {
+ console.log('Loaded', loaded);
+ });
+
editor.render();