Skip to content

Commit

Permalink
Remove options shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
lizgw committed Oct 16, 2020
1 parent 36a66a4 commit 8bc844c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
9 changes: 0 additions & 9 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,6 @@ function setupEventListeners()

// add event listener for when storage changes
chrome.storage.onChanged.addListener(updateDisplay);

// handle keyboard shortcuts
document.onkeyup = function (event)
{
if(event.which == 79) // o key
toggleOptions();

return false;
}
}

function showWelcomeMessage()
Expand Down
2 changes: 0 additions & 2 deletions wavetab.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ <h3>Font</h3>
</label>-->
<label for="opt-font-custom">Custom</label>
</div>
<h3>Shortcuts</h3>
<p>Press <strong>o</strong> to toggle the options panel.</p>
<h3>Reset</h3>
<button id="opt-reset" class="btn">Reset all options to default</button>
</div>
Expand Down

0 comments on commit 8bc844c

Please sign in to comment.