We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1b2089 commit d465feeCopy full SHA for d465fee
index.html
@@ -363,6 +363,7 @@
363
height: 100%;
364
opacity: 0;
365
cursor: text;
366
+ touch-action: none;
367
}
368
#row-num {
369
position:absolute;
@@ -2577,7 +2578,7 @@ <h3>設定</h3>
2577
2578
setTimeout(()=>{document.getElementById("cursor-input").focus();}, 10);
2579
});
2580
sensor.addEventListener("pointermove", (e)=>{
- if (e.buttons & 1 > 0) {
2581
+ if ((e.buttons & 1) > 0) {
2582
let pos = getCursorPos(e.offsetX, e.offsetY);
2583
console.log(e, pos);
2584
select((selecting?selection:cursor_pos).slice(0, 2), pos);
0 commit comments