1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 02:32:27 +01:00

don't call focusContent() on page load since it causes window map events to be

fired
This commit is contained in:
Doug Kearns
2007-10-04 10:54:21 +00:00
parent 8121de585c
commit 493c2c3576

View File

@@ -221,8 +221,9 @@ function Events() //{{{
// 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);
//setTimeout(vimperator.focusContent, 10);
}
}
}