We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
아래의 소스상에서 keydown 이벤트 추가시, 한글입력의 경우 입력방지가 적용되지 않습니다.
instance.on('keydown', (editorType, event) => { const functionKeys = Array.from({ length: 12 }, (_, i) => F${i + 1});
F${i + 1}
// 복사/전체 선택은 허용 if ((event.ctrlKey || event.metaKey) && (event.key === 'c' || event.key === 'a')) { return; } // 기능키(F1~F12)는 허용 if (functionKeys.includes(event.key)) { return; } event.preventDefault(); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
아래의 소스상에서 keydown 이벤트 추가시, 한글입력의 경우 입력방지가 적용되지 않습니다.
instance.on('keydown', (editorType, event) => {
const functionKeys = Array.from({ length: 12 }, (_, i) =>
F${i + 1}
);The text was updated successfully, but these errors were encountered: