diff options
Diffstat (limited to 'js/panels/Materials/materials-library-panel.reel/materials-library-panel.html')
-rwxr-xr-x | js/panels/Materials/materials-library-panel.reel/materials-library-panel.html | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/js/panels/Materials/materials-library-panel.reel/materials-library-panel.html b/js/panels/Materials/materials-library-panel.reel/materials-library-panel.html index 6fa54495..3adb2108 100755 --- a/js/panels/Materials/materials-library-panel.reel/materials-library-panel.html +++ b/js/panels/Materials/materials-library-panel.reel/materials-library-panel.html | |||
@@ -10,12 +10,12 @@ | |||
10 | <link rel="stylesheet" type="text/css" href="materials-library-panel.css"> | 10 | <link rel="stylesheet" type="text/css" href="materials-library-panel.css"> |
11 | <script type="text/montage-serialization"> | 11 | <script type="text/montage-serialization"> |
12 | { | 12 | { |
13 | "addButton": { | 13 | "duplicateButton": { |
14 | "prototype": "montage/ui/button.reel", | 14 | "prototype": "montage/ui/button.reel", |
15 | "properties": { | 15 | "properties": { |
16 | "element": {"#": "ml_add_btn"}, | 16 | "element": {"#": "ml_duplicate_btn"}, |
17 | "enabled": false | 17 | "enabled": true |
18 | }, | 18 | }, |
19 | "listeners": [ | 19 | "listeners": [ |
20 | { | 20 | { |
21 | "type": "action", | 21 | "type": "action", |
@@ -23,11 +23,10 @@ | |||
23 | } | 23 | } |
24 | ] | 24 | ] |
25 | }, | 25 | }, |
26 | "copyButton": { | 26 | "editButton": { |
27 | "prototype": "montage/ui/button.reel", | 27 | "prototype": "montage/ui/button.reel", |
28 | "properties": { | 28 | "properties": { |
29 | "element": {"#": "ml_copy_btn"}, | 29 | "element": {"#": "ml_edit_btn"} |
30 | "enabled": false | ||
31 | }, | 30 | }, |
32 | "listeners": [ | 31 | "listeners": [ |
33 | { | 32 | { |
@@ -82,7 +81,9 @@ | |||
82 | "prototype": "js/panels/Materials/materials-library-panel.reel[MaterialsLibraryPanels]", | 81 | "prototype": "js/panels/Materials/materials-library-panel.reel[MaterialsLibraryPanels]", |
83 | "properties": { | 82 | "properties": { |
84 | "element": {"#": "materials_library_panel"}, | 83 | "element": {"#": "materials_library_panel"}, |
85 | "_materialInfo": {"@": "materialInfo"} | 84 | "_materialInfo": {"@": "materialInfo"}, |
85 | "materialsController": {"@": "materialsController"}, | ||
86 | "deleteButton": {"@": "deleteButton"} | ||
86 | } | 87 | } |
87 | } | 88 | } |
88 | } | 89 | } |
@@ -92,14 +93,14 @@ | |||
92 | <body> | 93 | <body> |
93 | 94 | ||
94 | <div data-montage-id="materials_library_panel" class="materials_library_panel"> | 95 | <div data-montage-id="materials_library_panel" class="materials_library_panel"> |
95 | <section data-montage-id="ml_tree_holder" class="animationsLibrary"> | 96 | <section data-montage-id="ml_tree_holder" class="ml_tree_holder"> |
96 | <div data-montage-id="materials_library_tree"></div> | 97 | <div data-montage-id="materials_library_tree"></div> |
97 | </section> | 98 | </section> |
98 | <hr /> | 99 | <hr /> |
99 | <div data-montage-id="ml_buttons" class="ml_buttons"> | 100 | <div data-montage-id="ml_buttons" class="ml_buttons"> |
100 | <button data-montage-id="ml_add_btn" class="nj-skinned">Add</button> | 101 | <button data-montage-id="ml_duplicate_btn" class="nj-skinned ml_duplicate_btn">Duplicate</button> |
101 | <button data-montage-id="ml_copy_btn" class="nj-skinned">Copy</button> | 102 | <button data-montage-id="ml_edit_btn" class="nj-skinned ml_edit_btn">Edit</button> |
102 | <button data-montage-id="ml_delete_btn" class="nj-skinned">Delete</button> | 103 | <button data-montage-id="ml_delete_btn" class="nj-skinned ml_delete_btn">Delete</button> |
103 | </div> | 104 | </div> |
104 | </div> | 105 | </div> |
105 | 106 | ||