diff options
author | Jonathan Duran | 2012-07-03 10:01:57 -0700 |
---|---|---|
committer | Jonathan Duran | 2012-07-03 10:01:57 -0700 |
commit | 0d7918cb127f06adab5515edde72dccc137473f5 (patch) | |
tree | a043f9a730ae204bfe0922bcd46a747f78991d59 | |
parent | 0ea5607c3760852b1fe63ad568b4db064129955b (diff) | |
download | ninja-0d7918cb127f06adab5515edde72dccc137473f5.tar.gz |
Fix re-open 3D tweens correctly
Signed-off-by: Jonathan Duran <jduran@motorola.com>
-rw-r--r-- | js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js b/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js index 8953888b..b1e8af8a 100644 --- a/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js +++ b/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js | |||
@@ -981,14 +981,14 @@ var TimelineTrack = exports.TimelineTrack = Montage.create(Component, { | |||
981 | 981 | ||
982 | for(j=0; j<styleLength; j++){ | 982 | for(j=0; j<styleLength; j++){ |
983 | // check for vendor prefixes and skip them for now | 983 | // check for vendor prefixes and skip them for now |
984 | var firstChar = this.currentKeyframeRule[i].style[j].charAt(0); | 984 | //var firstChar = this.currentKeyframeRule[i].style[j].charAt(0); |
985 | if(firstChar === "-"){ | 985 | //if(firstChar === "-"){ |
986 | break; | 986 | // break; |
987 | } else { | 987 | //} else { |
988 | var currProp = this.currentKeyframeRule[i].style[j]; | 988 | var currProp = this.currentKeyframeRule[i].style[j]; |
989 | var propVal = this.currentKeyframeRule[i].style[currProp]; | 989 | var propVal = this.currentKeyframeRule[i].style[currProp]; |
990 | keyframeStyles.push([currProp, propVal]); | 990 | keyframeStyles.push([currProp, propVal]); |
991 | } | 991 | //} |
992 | } | 992 | } |
993 | 993 | ||
994 | // recreate tween properties array for timeline tween | 994 | // recreate tween properties array for timeline tween |