Bug 482232 - Using search field in saved password window changes width of search field. r=dolske

This commit is contained in:
Matt Noorenberghe 2009-05-12 12:09:19 -07:00
Родитель 1a0bc6dccd
Коммит f3eb4100a9
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -49,7 +49,7 @@ function SignonsStartup() {
kSignonBundle = document.getElementById("signonBundle"); kSignonBundle = document.getElementById("signonBundle");
document.getElementById("togglePasswords").label = kSignonBundle.getString("showPasswords"); document.getElementById("togglePasswords").label = kSignonBundle.getString("showPasswords");
document.getElementById("togglePasswords").accessKey = kSignonBundle.getString("showPasswordsAccessKey"); document.getElementById("togglePasswords").accessKey = kSignonBundle.getString("showPasswordsAccessKey");
document.getElementById("signonsIntro").value = kSignonBundle.getString("loginsSpielAll"); document.getElementById("signonsIntro").textContent = kSignonBundle.getString("loginsSpielAll");
LoadSignons(); LoadSignons();
// filter the table if requested by caller // filter the table if requested by caller
@ -274,7 +274,7 @@ function SignonClearFilter() {
} }
signonsTreeView._lastSelectedRanges = []; signonsTreeView._lastSelectedRanges = [];
document.getElementById("signonsIntro").value = kSignonBundle.getString("loginsSpielAll"); document.getElementById("signonsIntro").textContent = kSignonBundle.getString("loginsSpielAll");
} }
function FocusFilterBox() { function FocusFilterBox() {
@ -344,5 +344,5 @@ function _filterPasswords()
if (signonsTreeView.rowCount > 0) if (signonsTreeView.rowCount > 0)
signonsTreeView.selection.select(0); signonsTreeView.selection.select(0);
document.getElementById("signonsIntro").value = kSignonBundle.getString("loginsSpielFiltered"); document.getElementById("signonsIntro").textContent = kSignonBundle.getString("loginsSpielFiltered");
} }