diff options
author | Teddy Wing | 2015-05-24 17:14:55 -0400 |
---|---|---|
committer | Teddy Wing | 2015-05-24 17:14:55 -0400 |
commit | c51f5ade946771a3a5c2398aff4b46bef9e8efe2 (patch) | |
tree | 9494d323a2e7b910ac849f43def3eb2a0e1bfae0 | |
parent | 1f8c77706f219f4e91f26eb28de63f64961727ce (diff) | |
download | Peniquitous-c51f5ade946771a3a5c2398aff4b46bef9e8efe2.tar.bz2 |
peniquitous.js: Get rid of test code
This was used to test out simulating a down arrow key press on the
Google search home page with the field selected and something typed in.
If the first entry in the suggestion drop-down was selected after the
timeout fired, that means it worked.
We no longer need this test code.
-rw-r--r-- | peniquitous.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/peniquitous.js b/peniquitous.js index c858f42..0b64ddd 100644 --- a/peniquitous.js +++ b/peniquitous.js @@ -17,9 +17,4 @@ } }); } - - window.setTimeout(function() { - KeyEvent.simulate(0, 40, [], document.getElementById('lst-ib')); - console.log('fired'); - }, 6000); })(); |