Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "staballoy", | ||
"description": "Reactive Library for binding data to UI elements in Titanium Alloy", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"main": "staballoy.js", | ||
@@ -6,0 +6,0 @@ "keywords": ["titanium","reactive","titanium-module"], |
@@ -115,3 +115,3 @@ # Staballoy | ||
## Changelog | ||
- **1.0.3** - (20210128) Fixed property search when property value was falsy | ||
- **1.0.4** - (20210128) Fixed property search when property value was falsy | ||
- **1.0.1** - (20210127) Added garbage-collection and debug mode | ||
@@ -118,0 +118,0 @@ - **1.0.0** - (20210119) Complete rewrite of the module |
/** | ||
* Staballoy is created by Rene Pot (2021) | ||
* Version 1.0.3 -- 2021-01-28 | ||
* Version 1.0.4 -- 2021-01-28 | ||
* The latest version can be found at Github: https://github.com/topener/staballoy | ||
@@ -16,3 +16,3 @@ * Or npmjs: https://www.npmjs.com/package/staballoy | ||
Object.keys(subscriptions).forEach(sub => { | ||
changes += parseSubscriptions(sub.UI); | ||
changes += parseSubscriptions(subscriptions[sub].UI); | ||
}); | ||
@@ -19,0 +19,0 @@ log(`${changes} changes in subscriptions`); |
Sorry, the diff of this file is not supported yet
12041