diff options
author | Jonathan Duran | 2012-02-06 18:25:15 -0800 |
---|---|---|
committer | Jonathan Duran | 2012-02-06 18:25:15 -0800 |
commit | b4dd3e269b9de188e015f4cfac29c70a684f4c4f (patch) | |
tree | a9e80178b27128a1bede76b91026e7bfa1a60bf7 /js/panels/Resizer.js | |
parent | 56a0532ef7c154eb41d9924dd36aee9606b01f75 (diff) | |
download | ninja-b4dd3e269b9de188e015f4cfac29c70a684f4c4f.tar.gz |
Fix problem with resizer set to capture all webkitTransitionEnd events. Update collapser to use namespaced webkitTransitionEnd events for forward compatibility.
Signed-off-by: Jonathan Duran <jduran@motorola.com>
Diffstat (limited to 'js/panels/Resizer.js')
-rw-r--r-- | js/panels/Resizer.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/panels/Resizer.js b/js/panels/Resizer.js index 69efd6ac..3afe5d5b 100644 --- a/js/panels/Resizer.js +++ b/js/panels/Resizer.js | |||
@@ -92,7 +92,7 @@ exports.Resizer = Montage.create(Component, { | |||
92 | 92 | ||
93 | handleDblclick: { | 93 | handleDblclick: { |
94 | value : function() { | 94 | value : function() { |
95 | this.panel.addEventListener("webkitTransitionEnd", this, true); | 95 | this.panel.addEventListener("webkitTransitionEnd", this, false); |
96 | if (this.isVertical) { | 96 | if (this.isVertical) { |
97 | this.panel.style.height = ""; | 97 | this.panel.style.height = ""; |
98 | } else { | 98 | } else { |
@@ -102,7 +102,7 @@ exports.Resizer = Montage.create(Component, { | |||
102 | } | 102 | } |
103 | }, | 103 | }, |
104 | 104 | ||
105 | captureWebkitTransitionEnd: { | 105 | handleWebkitTransitionEnd: { |
106 | value: function() { | 106 | value: function() { |
107 | if(this.redrawStage) { | 107 | if(this.redrawStage) { |
108 | this.application.ninja.stage.resizeCanvases = true; | 108 | this.application.ninja.stage.resizeCanvases = true; |