aboutsummaryrefslogtreecommitdiffstats
path: root/auto_detect_link.js
diff options
context:
space:
mode:
authoranekos2008-11-15 06:25:58 +0000
committeranekos2008-11-15 06:25:58 +0000
commit4fa6b253c26d47bd5f9aa2f976773e7d521a6757 (patch)
tree638072ebe2171d9235bf18cdedc560d9e6701fa6 /auto_detect_link.js
parentb3bd606ea321b3efc6337309192152cc1bb2431b (diff)
downloadvimperator-plugins-4fa6b253c26d47bd5f9aa2f976773e7d521a6757.tar.bz2
デバッグ用コードの除去
その他。 git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@23763 d0d07461-0603-4401-acd4-de1884942a52
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) {