Skip to content

Commit

Permalink
Minor fix for time
Browse files Browse the repository at this point in the history
  • Loading branch information
Charandeep committed Jun 21, 2024
1 parent 011438b commit f41fe00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@
</div>
<div>
<label>Left / Right double touch </label>
<input type="checkbox" onclick="leftRightTouchEnable(event.target.checked)">
<input type="checkbox" checked onclick="leftRightTouchEnable(event.target.checked)">
</div>
</div>
<div class="configBottom prevent-selection">
Expand Down
4 changes: 2 additions & 2 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ function changeFullscreenIcon(on) {

/*********************** Left / Right touch *************************/

let leftRightTouch = false;
let leftRightTouch = true;

function leftRightTouchEnable(isOn) {
if (isOn) {
Expand Down Expand Up @@ -353,7 +353,7 @@ baniSection.addEventListener("dblclick", (event)=>{

/*********************** Highlight selected line *************************/

const HOLD_TIME = 600;
const HOLD_TIME = 350;

let pointerTimeout;

Expand Down

0 comments on commit f41fe00

Please sign in to comment.