Open bodymovin opened 7 years ago
when you declare var totalSize = void 0; on your method "_totalItemsSize", you're totalSize equals undefined instead of 0. so this method always returns NaN. then this._totalItemsSize() <= 0 is never true
var totalSize = void 0;
this._totalItemsSize() <= 0
when you declare
var totalSize = void 0;
on your method "_totalItemsSize", you're totalSize equals undefined instead of 0. so this method always returns NaN. thenthis._totalItemsSize() <= 0
is never true