diff options
author | hwc487 | 2012-05-31 17:11:08 -0700 |
---|---|---|
committer | hwc487 | 2012-05-31 17:11:08 -0700 |
commit | 1c445cf5d905f79937998cf2f1115594ea8c1074 (patch) | |
tree | 35271ad7ffec86fde9102af3dd954fa3a2974582 /js/panels/Materials | |
parent | 335ce503996e3ccbd2909086328d0a31fbd03370 (diff) | |
parent | 6042bdc5f2aada4412912fd01602d32c9088dc26 (diff) | |
download | ninja-1c445cf5d905f79937998cf2f1115594ea8c1074.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into Textures
Conflicts:
js/io/system/ninjalibrary.json
Diffstat (limited to 'js/panels/Materials')
-rwxr-xr-x | js/panels/Materials/materials-popup.reel/materials-popup.html | 2 | ||||
-rwxr-xr-x | js/panels/Materials/materials-popup.reel/materials-popup.js | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/js/panels/Materials/materials-popup.reel/materials-popup.html b/js/panels/Materials/materials-popup.reel/materials-popup.html index d18599d6..bac722cd 100755 --- a/js/panels/Materials/materials-popup.reel/materials-popup.html +++ b/js/panels/Materials/materials-popup.reel/materials-popup.html | |||
@@ -43,7 +43,7 @@ | |||
43 | "data": { | 43 | "data": { |
44 | "boundObject": {"@": "materialsProperties"}, | 44 | "boundObject": {"@": "materialsProperties"}, |
45 | "boundObjectPropertyPath": "objectAtCurrentIteration", | 45 | "boundObjectPropertyPath": "objectAtCurrentIteration", |
46 | "oneway": false | 46 | "oneway": true |
47 | } | 47 | } |
48 | }, | 48 | }, |
49 | "listeners": [ | 49 | "listeners": [ |
diff --git a/js/panels/Materials/materials-popup.reel/materials-popup.js b/js/panels/Materials/materials-popup.reel/materials-popup.js index 1237e602..db3f7652 100755 --- a/js/panels/Materials/materials-popup.reel/materials-popup.js +++ b/js/panels/Materials/materials-popup.reel/materials-popup.js | |||
@@ -681,6 +681,11 @@ exports.MaterialsPopup = Montage.create(Component, { | |||
681 | } | 681 | } |
682 | ] | 682 | ] |
683 | }, | 683 | }, |
684 | |||
685 | materialsProperties: { | ||
686 | serializable: true, | ||
687 | value: null | ||
688 | }, | ||
684 | 689 | ||
685 | _materialsData: { | 690 | _materialsData: { |
686 | enumerable: true, | 691 | enumerable: true, |
@@ -697,7 +702,7 @@ exports.MaterialsPopup = Montage.create(Component, { | |||
697 | }, | 702 | }, |
698 | set: function(data) { | 703 | set: function(data) { |
699 | this._materialsData = data; | 704 | this._materialsData = data; |
700 | if(this.materialsProperties) | 705 | if(this.materialsProperties && data.length) |
701 | { | 706 | { |
702 | this.materialsProperties.needsDraw = true; | 707 | this.materialsProperties.needsDraw = true; |
703 | } | 708 | } |