Commit 45aff55e11affda69f1024ae5a7954627a4da088
1 parent
74d9dca1
Exists in
master
and in
2 other branches
Changing method of making participants list unclickable when hidden
Showing
2 changed files
with
5 additions
and
7 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
subjects/templates/subjects/view.html
... | ... | @@ -195,9 +195,8 @@ |
195 | 195 | |
196 | 196 | list.animate({ |
197 | 197 | right : '-315px', |
198 | - opacity: 0, | |
199 | - 'z-index': '-1' | |
200 | - }, 500); | |
198 | + opacity: 0 | |
199 | + }, 500).css({visibility: 'hidden'}); | |
201 | 200 | |
202 | 201 | $this.removeClass('open'); |
203 | 202 | } else { |
... | ... | @@ -207,9 +206,8 @@ |
207 | 206 | |
208 | 207 | list.animate({ |
209 | 208 | right : 0, |
210 | - opacity: 1, | |
211 | - 'z-index': '1' | |
212 | - }, 500); | |
209 | + opacity: 1 | |
210 | + }, 500).css({visibility: 'visible'}); | |
213 | 211 | } |
214 | 212 | }); |
215 | 213 | }); | ... | ... |