Advertisement
Typhoon

Transmission SelectAll JS

Apr 6th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.onkeydown = function(evt) {
  2.   evt = evt || window.event;
  3.   if (evt.keyCode == 65) {
  4.   console.log("Select All");
  5.   tr.selectAll();
  6.   }
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement