You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$(document).ready(function() {
//Type in input-textbox propagate key event to document. Stop it.
// example
stopPropagationOnInput('move_data_key');
});
$(document).ready(function() {
//Type in input-textbox propagate key event to document. Stop it.
// example
stopPropagationOnInput('move_data_key');
});
function stopPropagationOnInput(elementId){
document.getElementById(elementId).addEventListener('keydown',function(e) {
e.stopPropagation();
});
document.getElementById(elementId).addEventListener('keyup',function(e) {
e.stopPropagation();
});
}
The text was updated successfully, but these errors were encountered: