aboutsummaryrefslogtreecommitdiffstats
path: root/auto_detect_link.js
diff options
context:
space:
mode:
Diffstat (limited to 'auto_detect_link.js')
-rw-r--r--auto_detect_link.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/auto_detect_link.js b/auto_detect_link.js
index d854203..3236929 100644
--- a/auto_detect_link.js
+++ b/auto_detect_link.js
@@ -164,7 +164,6 @@
// 要素をクリックする
function clickElement (elem) {
- liberator.log('click: ' + elem);
var e = content.document.createEvent('MouseEvents');
e.initMouseEvent('click', true, true, window, 1, 0, 0, 0, 0, false, false, false, false, 0, null);
elem.dispatchEvent(e);
@@ -175,13 +174,11 @@
function displayOpened (link) {
var msg = 'open: ' + link.type + ' <' + removeSpace(link.text) + '> ' + link.uri;
setTimeout(function () liberator.echo(msg, commandline.FORCE_SINGLELINE), gv().displayDelay);
- liberator.log(msg);
}
// リンクを開く
function open (link) {
- liberator.log(link);
if (link.element) {
clickElement(link.element);
} else if (link.uri) {