Skip to content

Commit

Permalink
Update entry.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Miner49ur authored Sep 2, 2024
1 parent b12f4f9 commit ed06c22
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions entry/entry.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<div id="particles-js"></div>
<div class="main">
<h1>Rigtools | Devtools Code Execution</h1>
<p> Press q for evaluating code under
<p> Press Q for evaluating code under
<a class="button" id="extdbg" href="javascript:void(0)"> extension id</a>
</p>
<p> Hardcoded shortcut to ls filter
<a class="button" id="ls-filter" href="javascript:void(0)">ls filter shortcut</a>
<p> Press L for a hardcoded shortcut to
<a class="button" id="ls-filter" href="javascript:void(0)">ls filter</a>
</p>
<p> Press m for evaluating under
<p> Press M for evaluating under
<a class="button" id="devdbg" href="javascript:void(0)">devtools</a> context
</p>
<p> Typing cancel in any prompt will cancel the current operation. </p>
Expand Down Expand Up @@ -207,6 +207,8 @@ <h1>Rigtools | Devtools Code Execution</h1>
document.getElementById('extdbg').click();
} else if (event.key === 'm') {
document.getElementById('devdbg').click();
} else if (event.key === 'l') {
document.getElementById('ls-filter').click();
};
});
</script>
Expand Down

0 comments on commit ed06c22

Please sign in to comment.