Open "ARI Stream Quiz -> Settings -> Advanced" page and populate "Custom JS code" parameter with the following code:
Code: |
jQuery(function($) {
setTimeout(function() {
var quizzes = jQuery('.ari-stream-quiz').ariStreamQuiz();
if (!quizzes) return;
if (!(quizzes instanceof Array)) quizzes = [quizzes];
$.each(quizzes, function(idx, quiz) {
var showResults = quiz.showResults;
quiz.showResults = function(disableScroll) {
var smartScroll = this.options.smartScroll;
this.options.smartScroll = true;
showResults.call(quiz, disableScroll);
this.options.smartScroll = smartScroll;
}
});
}, 10);
});
|
After this you can disable "Smart scroll".
Regards,
ARI Soft