From fe15ee93479eb5684b513c1286561d70f003b14e Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Wed, 7 Nov 2007 11:33:01 +0000 Subject: [PATCH] remove empty statement --- content/events.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/events.js b/content/events.js index c00e00f3..89503940 100644 --- a/content/events.js +++ b/content/events.js @@ -221,12 +221,12 @@ vimperator.Events = function() //{{{ vimperator.history.add(url, title); // code which is only relevant if the page load is the current tab goes here: - if (doc == getBrowser().selectedBrowser.contentDocument) - { - // FIXME: this currently causes window map events which is _very_ annoying - // we want to stay in command mode after a page has loaded - //setTimeout(vimperator.focusContent, 10); - } + //if (doc == getBrowser().selectedBrowser.contentDocument) + //{ + // // FIXME: this currently causes window map events which is _very_ annoying + // // we want to stay in command mode after a page has loaded + // //setTimeout(vimperator.focusContent, 10); + //} } }