diff options
author | Eric Guzman | 2012-05-31 21:57:22 -0700 |
---|---|---|
committer | Eric Guzman | 2012-05-31 21:57:22 -0700 |
commit | 04ef4ffcfde762a0aead4a7b702f3c019fdbeb69 (patch) | |
tree | fd317d8de8eaec728376c60273b1f6a214816e8e /js/panels/binding/binding-item.reel/binding-item.js | |
parent | 4e28e2d2a695d487b1bc127dce0a874691539ca8 (diff) | |
download | ninja-04ef4ffcfde762a0aead4a7b702f3c019fdbeb69.tar.gz |
Binding Panel - Developed panel components.
Diffstat (limited to 'js/panels/binding/binding-item.reel/binding-item.js')
-rw-r--r-- | js/panels/binding/binding-item.reel/binding-item.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/js/panels/binding/binding-item.reel/binding-item.js b/js/panels/binding/binding-item.reel/binding-item.js new file mode 100644 index 00000000..9365da65 --- /dev/null +++ b/js/panels/binding/binding-item.reel/binding-item.js | |||
@@ -0,0 +1,26 @@ | |||
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 | |||
11 | exports.BindingItem = Montage.create(Component, { | ||
12 | |||
13 | sourceObjectPropertyPath : { value: null }, | ||
14 | |||
15 | templateDidLoad : { | ||
16 | value: function() { | ||
17 | console.log("loaded binding item"); | ||
18 | } | ||
19 | }, | ||
20 | |||
21 | prepareForDraw: { | ||
22 | value: function() { | ||
23 | console.log("preparing to draw binding item"); | ||
24 | } | ||
25 | } | ||
26 | }); \ No newline at end of file | ||