We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4832c65 commit 16517ceCopy full SHA for 16517ce
2 files changed
v3/src/checksum.js
@@ -1,4 +1,4 @@
1
var CHECKSUM = {
2
-build: 'd362b9b0-08cd-11e7-b198-a589b735637e'
+build: 'd2bec270-08d6-11e7-bb54-f74c36707e05'
3
};
4
module.exports = CHECKSUM;
v3/src/state/GlobalStateManager.js
@@ -478,6 +478,7 @@ GlobalStateManager.prototype = {
478
create: function (state)
479
{
480
// console.log('create', state.sys.settings.key);
481
+ // console.log(state);
482
483
// Insert at the correct index, or it just all goes wrong :)
484
@@ -494,7 +495,7 @@ GlobalStateManager.prototype = {
494
495
496
if (state.create)
497
- state.create(state.sys.settings.data);
498
+ state.create.call(state, state.sys.settings.data);
499
}
500
},
501
0 commit comments