aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage-google/picasa-carousel.reel
diff options
context:
space:
mode:
authorAnanya Sen2012-06-04 10:43:29 -0700
committerAnanya Sen2012-06-04 10:43:29 -0700
commit6fb29883329c9c42a8b406128b92c0e6323a47be (patch)
tree07f46e88bccf9cdb7d4e6818e1b646b0d19f05b9 /node_modules/montage-google/picasa-carousel.reel
parentcf097ec69e35c07ecae5a105ed5eeb78291c9ac2 (diff)
parentc1ec69879028220b0c3f11ad6e24035bf527802c (diff)
downloadninja-6fb29883329c9c42a8b406128b92c0e6323a47be.tar.gz
Merge branch 'refs/heads/ninja-internal-master' into cut-copy-paste
Conflicts: js/ninja.reel/ninja.html Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'node_modules/montage-google/picasa-carousel.reel')
-rw-r--r--node_modules/montage-google/picasa-carousel.reel/picasa-carousel.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/node_modules/montage-google/picasa-carousel.reel/picasa-carousel.js b/node_modules/montage-google/picasa-carousel.reel/picasa-carousel.js
index 800e073c..0b669b80 100644
--- a/node_modules/montage-google/picasa-carousel.reel/picasa-carousel.js
+++ b/node_modules/montage-google/picasa-carousel.reel/picasa-carousel.js
@@ -138,13 +138,20 @@ var PicasaCarousel = exports.PicasaCarousel = Montage.create(Component, /** @len
138 138
139 draw: { 139 draw: {
140 value: function() { 140 value: function() {
141 141
142 if (this.isSearching) { 142 if (this.isSearching) {
143 this.element.classList.add("searching"); 143 this.element.classList.add("searching");
144 } else { 144 } else {
145 this.element.classList.remove("searching"); 145 this.element.classList.remove("searching");
146 } 146 }
147 147
148 }
149 },
150
151 serializeProperties: {
152 value: function(serializer) {
153 serializer.set("element", this.element);
154 serializer.set("queryParameter", this.queryParameter);
148 } 155 }
149 } 156 }
150 157