diff options
author | Armen Kesablyan | 2012-06-11 11:17:41 -0700 |
---|---|---|
committer | Armen Kesablyan | 2012-06-11 11:17:41 -0700 |
commit | 278769df00ced8620fd73371e38fe2e43f07ca3b (patch) | |
tree | deb505c8a66b660eee1f17a2c6c4c575c7939f6f /node_modules/montage-google/picasa-carousel.reel | |
parent | 555fd6efa605b937800b3979a4c68fa7eb8666ae (diff) | |
parent | 0f040acabfb7a4bf3138debec5aff869487ceb11 (diff) | |
download | ninja-278769df00ced8620fd73371e38fe2e43f07ca3b.tar.gz |
Merge branch 'refs/heads/master' into binding
Conflicts:
js/document/models/html.js
js/document/views/design.js
js/ninja.reel/ninja.js
Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'node_modules/montage-google/picasa-carousel.reel')
-rw-r--r-- | node_modules/montage-google/picasa-carousel.reel/picasa-carousel.js | 11 |
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 | ||