diff options
Diffstat (limited to 'js/components/toolbar.reel/toolbar.js')
-rw-r--r-- | js/components/toolbar.reel/toolbar.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/js/components/toolbar.reel/toolbar.js b/js/components/toolbar.reel/toolbar.js new file mode 100644 index 00000000..79e7ff1f --- /dev/null +++ b/js/components/toolbar.reel/toolbar.js | |||
@@ -0,0 +1,27 @@ | |||
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/core/core").Montage, | ||
8 | Component = require("montage/ui/component").Component; | ||
9 | |||
10 | exports.Toolbar = Montage.create(Component, { | ||
11 | |||
12 | deserializedFromTemplate : { | ||
13 | value: function() { | ||
14 | console.log("toolbar - deserialized"); | ||
15 | } | ||
16 | }, | ||
17 | prepareForDraw : { | ||
18 | value: function() { | ||
19 | console.log("toolbar - prepare for draw"); | ||
20 | } | ||
21 | }, | ||
22 | draw : { | ||
23 | value: function() { | ||
24 | console.log("toolbar - draw"); | ||
25 | } | ||
26 | } | ||
27 | }); \ No newline at end of file | ||