aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Duran2012-03-01 21:54:35 -0800
committerJonathan Duran2012-03-01 21:54:35 -0800
commit8b08cbf68180187fe3913ea853adc0f65895fde5 (patch)
tree0fcb6abf9107ed2816ed165de8a896993a64fbc0
parente6b32ff62fcba0e1728f2e4041a39f2a1ba91531 (diff)
downloadninja-8b08cbf68180187fe3913ea853adc0f65895fde5.tar.gz
Fix for selection change event handler
event handler wasn't being executed because of incorrect handler function name Signed-off-by: Jonathan Duran <jduran@motorola.com>
-rw-r--r--js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js
index 49f044d7..9819d7e1 100644
--- a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js
+++ b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js
@@ -405,7 +405,7 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, {
405 } 405 }
406 }, 406 },
407 407
408 captureSelectionChange:{ 408 handleSelectionChange:{
409 value:function(){ 409 value:function(){
410 var key , switchSelectedLayer,layerIndex; 410 var key , switchSelectedLayer,layerIndex;
411 if(this.application.ninja.selectedElements[0]){ 411 if(this.application.ninja.selectedElements[0]){
@@ -416,7 +416,6 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, {
416 this._captureSelection=false; 416 this._captureSelection=false;
417 this.selectLayer(layerIndex); 417 this.selectLayer(layerIndex);
418 this._captureSelection=true; 418 this._captureSelection=true;
419
420 } 419 }
421 } 420 }
422 } 421 }