Bug 312913 - Caret mode no longer on by default in View Source window. patch from Uri Bernstein <uriber@gmail.com>, r=me.

This commit is contained in:
mozilla.mano%sent.com 2005-10-20 15:24:43 +00:00
Родитель 902a193268
Коммит 25dfbf07eb
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -371,7 +371,7 @@ function fireKeypressEvent(target, evt)
target.dispatchEvent(event);
}
function updateStatusBar()
function updateStatusBarFind()
{
var xulBrowserWindow = window.XULBrowserWindow;
if (!xulBrowserWindow)
@ -423,7 +423,7 @@ function setFoundLink(foundLink)
// fired by scroll event. So, we need to change the status bar text after
// mouse event.
if (gFindMode != FIND_NORMAL)
setTimeout(updateStatusBar, 0);
setTimeout(updateStatusBarFind, 0);
}
function finishFAYT(aKeypressEvent)