Commit b4a2d0be1bdf41779575a4010942333e0ec5b19b
1 parent
cead6098
Exists in
master
and in
2 other branches
Adjusting participants list responsive show
Showing
2 changed files
with
7 additions
and
2 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
subjects/templates/subjects/view.html
... | ... | @@ -196,7 +196,7 @@ |
196 | 196 | list.animate({ |
197 | 197 | right : '-180px', |
198 | 198 | opacity: 0 |
199 | - }, 500).css({visibility: 'hidden'}); | |
199 | + }, 500).css({display: "none", visibility: 'hidden'}); | |
200 | 200 | |
201 | 201 | $this.removeClass('open'); |
202 | 202 | } else { |
... | ... | @@ -206,8 +206,12 @@ |
206 | 206 | |
207 | 207 | list.animate({ |
208 | 208 | right : 0, |
209 | - opacity: 1 | |
209 | + opacity: 1, | |
210 | 210 | }, 500).css({visibility: 'visible'}); |
211 | + | |
212 | + setTimeout(function () { | |
213 | + list.fadeIn(); | |
214 | + }, 500); | |
211 | 215 | } |
212 | 216 | }); |
213 | 217 | }); | ... | ... |