Commit c88dbc46ed258dbe0c5a0a0c961af95e90d1d4c0

Authored by Miguel Barão
1 parent 3e1c9788
Exists in master and in 1 other branch dev

changed transitions to fadeIn/fadeOut

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
aprendizations/static/js/topic.js
@@ -57,10 +57,10 @@ function new_question(type, question, tries, progress) { @@ -57,10 +57,10 @@ function new_question(type, question, tries, progress) {
57 window.scrollTo(0, 0); 57 window.scrollTo(0, 0);
58 58
59 $("#submit").hide(); 59 $("#submit").hide();
60 - $("#question_div").animateCSS('bounceOutUp', function() { 60 + $("#question_div").animateCSS('fadeOut', function() {
61 $("#question_div").html(question); 61 $("#question_div").html(question);
62 MathJax.typeset(); 62 MathJax.typeset();
63 - $("#question_div").animateCSS('bounceInDown', function() { 63 + $("#question_div").animateCSS('fadeIn', function() {
64 showTriesLeft(tries); 64 showTriesLeft(tries);
65 $("#submit").removeClass("disabled").show(); 65 $("#submit").removeClass("disabled").show();
66 66