From c88dbc46ed258dbe0c5a0a0c961af95e90d1d4c0 Mon Sep 17 00:00:00 2001 From: Miguel BarĂ£o Date: Thu, 9 Jan 2020 00:52:09 +0000 Subject: [PATCH] changed transitions to fadeIn/fadeOut --- aprendizations/static/js/topic.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aprendizations/static/js/topic.js b/aprendizations/static/js/topic.js index f197323..6f905e5 100644 --- a/aprendizations/static/js/topic.js +++ b/aprendizations/static/js/topic.js @@ -57,10 +57,10 @@ function new_question(type, question, tries, progress) { window.scrollTo(0, 0); $("#submit").hide(); - $("#question_div").animateCSS('bounceOutUp', function() { + $("#question_div").animateCSS('fadeOut', function() { $("#question_div").html(question); MathJax.typeset(); - $("#question_div").animateCSS('bounceInDown', function() { + $("#question_div").animateCSS('fadeIn', function() { showTriesLeft(tries); $("#submit").removeClass("disabled").show(); -- libgit2 0.21.2