aboutsummaryrefslogtreecommitdiffstats
path: root/feedSomeKeys_3.js
diff options
context:
space:
mode:
Diffstat (limited to 'feedSomeKeys_3.js')
-rwxr-xr-xfeedSomeKeys_3.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/feedSomeKeys_3.js b/feedSomeKeys_3.js
index e352a92..31bd2b6 100755
--- a/feedSomeKeys_3.js
+++ b/feedSomeKeys_3.js
@@ -145,24 +145,6 @@ let INFO =
return result;
}
- function getFrame (num) {
- function bodyCheck (content)
- (content.document.body.localName.toLowerCase() === 'body');
-
- function get (content) {
- if (bodyCheck(content) && num-- <= 0)
- return content;
- for each (frame in Array.slice(content.frames)) {
- let result = get(frame);
- if (result)
- return result;
- }
- return void 0;
- }
-
- return get(content) || content;
- }
-
function virtualize (event) {
event.keyCode = VKeys[String.fromCharCode(event.charCode).toLowerCase()];
event.charCode = 0;