aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/lab/sandbox/ui/picasa-carousel-test/main.reel/main.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-03-18 16:14:34 -0700
committerJose Antonio Marquez2012-03-18 16:14:34 -0700
commit06a790e0f830d01539dc9e80c90e2bcdabaa666b (patch)
tree474f3f1e0ea147b0400ff8528e1c33566179b211 /node_modules/montage/lab/sandbox/ui/picasa-carousel-test/main.reel/main.js
parentfda7b595c96d99177fdd93de8da9030348a3f8fb (diff)
parent3056d540f32bb24927d06bfc516240cc6a0001f8 (diff)
downloadninja-06a790e0f830d01539dc9e80c90e2bcdabaa666b.tar.gz
Merge branch 'refs/heads/francoisfrisch-Ninja-Internal' into FileIO-Montage-Components
Diffstat (limited to 'node_modules/montage/lab/sandbox/ui/picasa-carousel-test/main.reel/main.js')
-rwxr-xr-xnode_modules/montage/lab/sandbox/ui/picasa-carousel-test/main.reel/main.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/node_modules/montage/lab/sandbox/ui/picasa-carousel-test/main.reel/main.js b/node_modules/montage/lab/sandbox/ui/picasa-carousel-test/main.reel/main.js
new file mode 100755
index 00000000..3851d82b
--- /dev/null
+++ b/node_modules/montage/lab/sandbox/ui/picasa-carousel-test/main.reel/main.js
@@ -0,0 +1,35 @@
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> */
6var Montage = require("montage/core/core").Montage,
7 Component = require("montage/ui/component").Component;
8
9
10exports.Main = Montage.create(Component, {
11
12 templateDidLoad: {
13 value: function() {
14 //console.log("main templateDidLoad")
15 }
16 },
17 picasaCarousel: {
18 enumerable: false,
19 value: null
20 },
21 prepareForDraw: {
22 enumerable: false,
23 value: function() {
24 this.searchForm.identifier = "searchForm";
25 this.searchForm.addEventListener("submit", this, false);
26 }
27 },
28 handleSearchFormSubmit: {
29 value: function(evt) {
30 evt.preventDefault();
31 this.picasaCarousel.performSearch();
32 }
33 },
34
35});