-
Hi, var trial = {
on_start: function() {$('body').css('cursor', 'none')},
timeline: [...],
timeline_variables: ...,
randomize_order: ...,
repetitions: ...,
on_finish: function() {$('body').css('cursor', 'default')}
}
timeline.push(trial); It seems cursor does hide (with on_start:) but doesn't un-hide (with on_finish:) after the trial is completed Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Answered by
jodeleeuw
Dec 3, 2020
Replies: 1 comment 3 replies
-
Do you have another |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
jodeleeuw
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you have another
on_finish
function in your stimulus presentation trial on the timeline? That parameter could be overriding this one.