aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/Tween.reel/Tween.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-02-28 15:15:12 -0800
committerJose Antonio Marquez2012-02-28 15:15:12 -0800
commitda83f44b0ecf379b0950a88d1c378fbedb80e386 (patch)
treec294662148907b6d496afee3dea1c03f18491680 /js/panels/Timeline/Tween.reel/Tween.js
parentb799b7cf3a422f407045c52a4c6a61756d1ea096 (diff)
parent676b4e2d7091ac63ce06f51be686b902b940bfff (diff)
downloadninja-da83f44b0ecf379b0950a88d1c378fbedb80e386.tar.gz
Merge branch 'refs/heads/integration-candidate' into FileIO-Build-Candidate
Diffstat (limited to 'js/panels/Timeline/Tween.reel/Tween.js')
-rw-r--r--js/panels/Timeline/Tween.reel/Tween.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/panels/Timeline/Tween.reel/Tween.js b/js/panels/Timeline/Tween.reel/Tween.js
index f6dbf32c..729abd64 100644
--- a/js/panels/Timeline/Tween.reel/Tween.js
+++ b/js/panels/Timeline/Tween.reel/Tween.js
@@ -118,6 +118,21 @@ var Tween = exports.Tween = Montage.create(Component, {
118 this.needsDraw = true; 118 this.needsDraw = true;
119 } 119 }
120 }, 120 },
121
122 _isClearing : {
123 serializable: true,
124 value: false
125 },
126 isClearing : {
127 get: function() {
128 return this._isClearing;
129 },
130 set: function(newVal) {
131 if (newVal === "clear it") {
132 this.eventManager.removeEventListener("elementChange", this, false);
133 }
134 }
135 },
121 136
122 prepareForDraw:{ 137 prepareForDraw:{
123 value:function () { 138 value:function () {
@@ -138,6 +153,7 @@ var Tween = exports.Tween = Montage.create(Component, {
138 153
139 handleElementChange:{ 154 handleElementChange:{
140 value:function (event) { 155 value:function (event) {
156
141 if (event.detail.source && event.detail.source !== "tween") { 157 if (event.detail.source && event.detail.source !== "tween") {
142 // check for correct element selection 158 // check for correct element selection
143 if (this.application.ninja.selectedElements[0]._element != this.parentComponent.parentComponent.animatedElement) { 159 if (this.application.ninja.selectedElements[0]._element != this.parentComponent.parentComponent.animatedElement) {