superfly-timeline
Advanced tools
Comparing version 2.0.3 to 2.1.0
@@ -5,2 +5,19 @@ # Change Log | ||
<a name="2.1.0"></a> | ||
# [2.1.0](https://github.com/SuperFlyTV/supertimeline/compare/2.0.3...2.1.0) (2018-07-02) | ||
### Bug Fixes | ||
* fix for failing test "keyframe in a grouped object" ([f80ed3d](https://github.com/SuperFlyTV/supertimeline/commit/f80ed3d)) | ||
* fix for failing test test: "test group with duration and infinite child" ([79d2b0e](https://github.com/SuperFlyTV/supertimeline/commit/79d2b0e)) | ||
* updated test ([2207624](https://github.com/SuperFlyTV/supertimeline/commit/2207624)) | ||
### Features | ||
* Add test for duration set only on group, not child ([d22d1ec](https://github.com/SuperFlyTV/supertimeline/commit/d22d1ec)) | ||
<a name="2.0.3"></a> | ||
@@ -7,0 +24,0 @@ ## [2.0.3](https://github.com/SuperFlyTV/supertimeline/compare/2.0.2...2.0.3) (2018-06-15) |
@@ -72,6 +72,6 @@ "use strict"; | ||
var LLayers = {}; | ||
_.each(tl.resolved, function (obj) { | ||
_.each(tld.resolved, function (obj) { | ||
LLayers[obj.id] = obj; | ||
}); | ||
_.each(tl.unresolved, function (obj) { | ||
_.each(tld.unresolved, function (obj) { | ||
if (obj.trigger.type === enums_1.TriggerType.LOGICAL) { | ||
@@ -435,6 +435,7 @@ // we'll just assume that the object might be there when the time comes... | ||
returnObj.resolved && | ||
returnObj.resolved.endTime && | ||
parentObj.resolved && | ||
parentObj.resolved.endTime && | ||
returnObj.resolved.endTime > parentObj.resolved.endTime) { | ||
((returnObj.resolved.endTime || 0) > parentObj.resolved.endTime || | ||
!returnObj.resolved.endTime // infinite | ||
)) { | ||
returnObj.resolved.endTime = parentObj.resolved.endTime; | ||
@@ -441,0 +442,0 @@ } |
{ | ||
"name": "superfly-timeline", | ||
"version": "2.0.3", | ||
"version": "2.1.0", | ||
"description": "A collection of rules as well as a resolver for placing objects on a virtual timeline.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
169899
1692