main
[JavaScript] 타이핑웍스 엔터키로 넘기기 안될 때 (작은 창) 본문
타이핑웍스 윈도우창을 작게하면, phone으로 인식되어 엔터키가 줄바꿈으로 인식됨.
twsAgent.prototype.change = function () {
this.phone = false;
this.tablet = false;
this.pc = true;
switch (!0) {
case this.phone:
twsOptIpt("phone"),
tws.langBox.display(tws.lang, "phone"),
tws.timeBox.display(tws.ttSelect, "phone"),
tws.timeBox.timesDP(tws.times, "phone"),
tws.timeBox.timerDP(tws.timer, "phone"),
tws.stnBox.btnDP(tws.short, "phone"),
tws.pgBox.display(tws.pangram, "phone"),
ask.req.close(document.getElementById("reqExit"));
break;
case this.tablet:
twsOptIpt("tablet"),
tws.langBox.display(tws.lang, "tablet"),
tws.timeBox.display(tws.ttSelect, "tablet"),
tws.timeBox.timesDP(tws.times, "tablet"),
tws.timeBox.timerDP(tws.timer, "tablet"),
tws.stnBox.btnDP(tws.short, "tablet"),
tws.pgBox.display(tws.pangram, "tablet"),
tws.menu.close("tablet");
break;
case this.pc:
twsOptIpt("pc"),
tws.langBox.display(tws.lang, "pc"),
tws.timeBox.display(tws.ttSelect, "pc"),
tws.timeBox.timesDP(tws.times, "pc"),
tws.timeBox.timerDP(tws.timer, "pc"),
tws.stnBox.btnDP(tws.short, "pc"),
tws.pgBox.display(tws.pangram, "pc"),
tws.menu.close("pc");
}
};
window.addEventListener("keydown", function (t) {
if (t.key === "Enter") {
t.preventDefault();
return;
}
});
728x90
'ETC' 카테고리의 다른 글
[Windows11] 우클릭 더 많은 옵션 표시 기본값 설정방법 (0) | 2023.06.16 |
---|---|
[Microsoft PowerToys] 마이크로소프트 파워토이 설치 및 윈도우창 항상 위로 고정하기 (Windows 11) (0) | 2023.05.25 |
[Raspberry Pi/Ubuntu] 고정 IP 설정하기 (Ubuntu 22.04 LTS) (0) | 2023.05.20 |
[Raspberry Pi] 모니터 없이 Ubuntu 22.04 LTS 설치하기 (Raspberry Pi Imager) (0) | 2023.05.20 |
[Windows10/원격데스크톱] 고정 IP 설정하고 원격 데스크톱 연결하기 (고정 IP 설정/포트포워딩) (0) | 2023.05.18 |
Comments