diff options
author | hwc487 | 2012-05-31 17:11:08 -0700 |
---|---|---|
committer | hwc487 | 2012-05-31 17:11:08 -0700 |
commit | 1c445cf5d905f79937998cf2f1115594ea8c1074 (patch) | |
tree | 35271ad7ffec86fde9102af3dd954fa3a2974582 /node_modules/montage-google/picasa-carousel.reel | |
parent | 335ce503996e3ccbd2909086328d0a31fbd03370 (diff) | |
parent | 6042bdc5f2aada4412912fd01602d32c9088dc26 (diff) | |
download | ninja-1c445cf5d905f79937998cf2f1115594ea8c1074.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into Textures
Conflicts:
js/io/system/ninjalibrary.json
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 | ||