Plugin: ExerciseFocused: Block click event - refs BT#20900

pull/4900/head
Angel Fernando Quiroz Campos 2 years ago committed by Angel Fernando Quiroz Campos
parent a08c2ca428
commit 1ead20c91e
No known key found for this signature in database
GPG Key ID: B284841AE3E562CD
  1. 2
      plugin/exercisefocused/templates/block.html.twig
  2. 8
      plugin/exercisefocused/templates/script.html.twig

@ -79,7 +79,7 @@
display: block;
}
.main-question, .exercise_actions, #exercise-description {
form#exercise_form {
background-color: #FFF;
position: relative;
z-index: 1005;

@ -119,6 +119,14 @@
$(window).on("blur", onBlur)
$(window).on("focus", onFocus)
$('body').on('click', 'a, button', function (e) {
var $el = $(e.target);
if (0 === $el.parents('form#exercise_form').length) {
e.preventDefault();
}
});
})
</script>
{% endif %}
Loading…
Cancel
Save