Commit 786a3ed6 by Иван Кубота

Fix Array Value events incorrect observable initialization.

parent bc6e230a
...@@ -881,7 +881,7 @@ Store.Value = { ...@@ -881,7 +881,7 @@ Store.Value = {
setter: function(val) { return val|0; } setter: function(val) { return val|0; }
}), }),
Any: new HookFactory(), Any: new HookFactory(),
Array: new HookFactory(ArrayStore.linearPrototype, function(obj){return obj._exposeGet.call({_props: []}); }), Array: new HookFactory(ArrayStore.linearPrototype, function(obj){obj._listeners = {}; return obj._exposeGet.call({_props: []}); }),
Function: new HookFactory() Function: new HookFactory()
}; };
......
{ {
"name": "react-vanilla", "name": "react-vanilla",
"version": "1.1.11", "version": "1.1.12",
"description": "", "description": "",
"main": "DOM.js", "main": "DOM.js",
"scripts": { "scripts": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment