aboutsummaryrefslogtreecommitdiff
path: root/js/components/tools-properties/selection-properties.reel/selection-properties.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-05-16 16:23:05 -0700
committerJose Antonio Marquez2012-05-16 16:23:05 -0700
commitd59cb51c275fbbef84604f9ed77afedba8168099 (patch)
tree7d3f51c20eb6b6940c1ce648d828fa1e2d8d510b /js/components/tools-properties/selection-properties.reel/selection-properties.js
parent857aafee732b6a85fa155ff4a05d1b8fde48f09d (diff)
parent92fcb770aff434e994e7a39a61d8fac4a017dca0 (diff)
downloadninja-d59cb51c275fbbef84604f9ed77afedba8168099.tar.gz
Merge branch 'refs/heads/Ninja-DOM-Architecture' into Document
Diffstat (limited to 'js/components/tools-properties/selection-properties.reel/selection-properties.js')
-rwxr-xr-xjs/components/tools-properties/selection-properties.reel/selection-properties.js30
1 files changed, 27 insertions, 3 deletions
diff --git a/js/components/tools-properties/selection-properties.reel/selection-properties.js b/js/components/tools-properties/selection-properties.reel/selection-properties.js
index c25e96d1..43622960 100755
--- a/js/components/tools-properties/selection-properties.reel/selection-properties.js
+++ b/js/components/tools-properties/selection-properties.reel/selection-properties.js
@@ -14,15 +14,39 @@ exports.SelectionProperties = Montage.create(ToolProperties, {
14 _controls: { value: false }, 14 _controls: { value: false },
15 15
16 _subPrepare: { 16 _subPrepare: {
17 value: function() { 17 value: function () {
18 this.transform.addEventListener("change", this, false); 18 this.transform.addEventListener("change", this, false);
19
20 // The functionality for these buttons is not currently implemented
21 // Until it is we will make them all disabled by default.
22 this.topAlign.disabled = true;
23
24 this.middleAlign.disabled = true;
25 this.bottomAlign.disabled = true;
26
27 this.leftAlign.disabled = true;
28 this.centerAlign.disabled = true;
29 this.rightAlign.disabled = true;
30
31 this.distTop.disabled = true;
32 this.distMiddle.disabled = true;
33 this.distBottom.disabled = true;
34
35 this.distLeft.disabled = true;
36 this.distCenter.disabled = true;
37 this.distRight.disabled = true;
38
39 this.arrangeBringForward.disabled = true;
40 this.arrangeSendBackward.disabled = true;
41 this.arrangeBringToFront.disabled = true;
42 this.arrangeSendToBack.disabled = true;
19 } 43 }
20 }, 44 },
21 45
22 handleChange: { 46 handleChange: {
23 value: function(event) { 47 value: function (event) {
24 this._controls = this.transform.checked; 48 this._controls = this.transform.checked;
25 NJevent("toolOptionsChange", {source: "SelectionProperties", inTransformMode: this.transform.checked}); 49 NJevent("toolOptionsChange", { source: "SelectionProperties", inTransformMode: this.transform.checked });
26 } 50 }
27 } 51 }
28 52