Skip to content

Commit

Permalink
No longer supporting animating null values
Browse files Browse the repository at this point in the history
  • Loading branch information
nvh committed Sep 15, 2016
1 parent e9a76d2 commit 6d8b172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framer/Animation.coffee
Expand Up @@ -297,7 +297,7 @@ class exports.Animation extends BaseClass
@options.curveOptions[k] = value if value

@isAnimatable = (v) ->
_.isNumber(v) or _.isFunction(v) or isRelativeProperty(v) or Color.isColorObject(v) or v == null
_.isNumber(v) or _.isFunction(v) or isRelativeProperty(v) or Color.isColorObject(v)

@filterAnimatableProperties = (properties) ->
# Function to filter only animatable properties out of a given set
Expand Down

0 comments on commit 6d8b172

Please sign in to comment.