mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-11 14:41:17 +08:00
fixed #127
This commit is contained in:
parent
890d3e138b
commit
f38de1d3a4
1 changed files with 3 additions and 1 deletions
|
|
@ -1193,7 +1193,8 @@ function accountIconLoading(truefalse) {
|
|||
|
||||
function toggleResultWordsDisplay(){
|
||||
if(resultVisible){
|
||||
if($("#words").hasClass('hidden')){
|
||||
if($("#words").stop(true,true).hasClass('hidden')){
|
||||
console.log('showing');
|
||||
//show
|
||||
$("#wordsTitle").css('opacity',1).removeClass('hidden').slideDown(250);
|
||||
|
||||
|
|
@ -1209,6 +1210,7 @@ function toggleResultWordsDisplay(){
|
|||
}, 250);
|
||||
}else{
|
||||
//hide
|
||||
console.log('hiding');
|
||||
|
||||
$("#wordsTitle").slideUp(250);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue