diff options
Diffstat (limited to 'js/components')
-rwxr-xr-x | js/components/layout/documents-tab.reel/documents-tab.js | 34 | ||||
-rw-r--r-- | js/components/toolbar.reel/toolbar-button.js | 28 | ||||
-rw-r--r-- | js/components/toolbar.reel/toolbar.html | 2 |
3 files changed, 29 insertions, 35 deletions
diff --git a/js/components/layout/documents-tab.reel/documents-tab.js b/js/components/layout/documents-tab.reel/documents-tab.js index 0be639db..41c98b30 100755 --- a/js/components/layout/documents-tab.reel/documents-tab.js +++ b/js/components/layout/documents-tab.reel/documents-tab.js | |||
@@ -8,40 +8,6 @@ var Montage = require("montage/core/core").Montage; | |||
8 | var Component = require("montage/ui/component").Component; | 8 | var Component = require("montage/ui/component").Component; |
9 | 9 | ||
10 | exports.DocumentsTab = Montage.create(Component, { | 10 | exports.DocumentsTab = Montage.create(Component, { |
11 | |||
12 | /* | ||
13 | openDocuments: { | ||
14 | value: [] | ||
15 | }, | ||
16 | |||
17 | prepareForDraw: { | ||
18 | enumerable: false, | ||
19 | value: function() { | ||
20 | // console.log("Change this to be inside the Ninja Reel"); | ||
21 | this.openDocuments = this.application.ninja.documentController._documents; | ||
22 | // this.eventManager.addEventListener( "appLoaded", this, false); | ||
23 | } | ||
24 | }, | ||
25 | |||
26 | handleAppLoaded: { | ||
27 | value: function() { | ||
28 | // this.openDocuments = this.application.ninja.currentDocument; | ||
29 | } | ||
30 | }, | ||
31 | |||
32 | draw: { | ||
33 | enumerable: false, | ||
34 | value: function() { | ||
35 | |||
36 | } | ||
37 | }, | ||
38 | |||
39 | handleClick: { | ||
40 | value: function(event) { | ||
41 | |||
42 | } | ||
43 | } | ||
44 | */ | ||
45 | contentController: { | 11 | contentController: { |
46 | value: null | 12 | value: null |
47 | } | 13 | } |
diff --git a/js/components/toolbar.reel/toolbar-button.js b/js/components/toolbar.reel/toolbar-button.js new file mode 100644 index 00000000..9ada9b29 --- /dev/null +++ b/js/components/toolbar.reel/toolbar-button.js | |||
@@ -0,0 +1,28 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | var Montage = require("montage").Montage, | ||
8 | Component = require("montage/ui/component").Component, | ||
9 | Button = require("montage/ui/button.reel/button").Button; | ||
10 | |||
11 | var ToolbarButton = exports.ToolbarButton = Montage.create(Button, { | ||
12 | hasTemplate : { | ||
13 | value: false | ||
14 | }, | ||
15 | _sourceObject : { | ||
16 | value: null | ||
17 | }, | ||
18 | sourceObject : { | ||
19 | get: function() { | ||
20 | return this._sourceObject; | ||
21 | }, | ||
22 | set: function(value) { | ||
23 | if(value === this._sourceObject) { return; } | ||
24 | |||
25 | this._sourceObject = value; | ||
26 | } | ||
27 | } | ||
28 | }); \ No newline at end of file | ||
diff --git a/js/components/toolbar.reel/toolbar.html b/js/components/toolbar.reel/toolbar.html index d2c5972a..51e7ebec 100644 --- a/js/components/toolbar.reel/toolbar.html +++ b/js/components/toolbar.reel/toolbar.html | |||
@@ -30,7 +30,7 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
30 | }, | 30 | }, |
31 | 31 | ||
32 | "button": { | 32 | "button": { |
33 | "prototype": "montage/ui/button.reel", | 33 | "prototype": "js/components/toolbar.reel/toolbar-button", |
34 | "properties": { | 34 | "properties": { |
35 | "element": {"#": "button" }, | 35 | "element": {"#": "button" }, |
36 | "label": " " | 36 | "label": " " |