Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "staballoy", | ||
"description": "Reactive Library for binding data to UI elements in Titanium Alloy", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"main": "staballoy.js", | ||
@@ -6,0 +6,0 @@ "keywords": ["titanium","reactive","titanium-module"], |
@@ -115,2 +115,3 @@ # Staballoy | ||
## Changelog | ||
- **1.0.3** - (20210128) Fixed property search when property value was falsy | ||
- **1.0.1** - (20210127) Added garbage-collection and debug mode | ||
@@ -117,0 +118,0 @@ - **1.0.0** - (20210119) Complete rewrite of the module |
/** | ||
* Staballoy is created by Rene Pot (2021) | ||
* Version 1.0.1 -- 2021-01-28 | ||
* Version 1.0.3 -- 2021-01-28 | ||
* The latest version can be found at Github: https://github.com/topener/staballoy | ||
@@ -77,3 +77,3 @@ * Or npmjs: https://www.npmjs.com/package/staballoy | ||
let res = find(data, UI.staballoy[key]); | ||
if (res) { | ||
if (res !== undefined) { | ||
if (key.indexOf('set') === 0) { | ||
@@ -80,0 +80,0 @@ UI[key](res); |
Sorry, the diff of this file is not supported yet
12026
126