fix js warning about savePage() and restorePage() not always returning a value.

r/sr=seth@craptastic.org
This commit is contained in:
sspitzer%netscape.com 2002-09-14 19:09:09 +00:00
Родитель f5cacdc174
Коммит d881adb4ca
1 изменённых файлов: 15 добавлений и 12 удалений

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

@ -703,9 +703,10 @@ function loadPage(pageId)
//
// save the values of the widgets to the given server
//
function savePage(serverId) {
if (!serverId) return;
function savePage(serverId)
{
if (!serverId)
return;
// tell the page that it's about to save
if ("onSave" in top.frames["contentFrame"])
@ -713,11 +714,11 @@ function savePage(serverId) {
var accountValues = getValueArrayFor(serverId);
if (!accountValues)
return true;
return;
var pageElements = getPageFormElements();
if (pageElements == null) return;
if (!pageElements)
return;
// store the value in the account
for (var i=0; i<pageElements.length; i++) {
@ -733,7 +734,6 @@ function savePage(serverId) {
}
}
}
}
function setAccountValue(accountValues, type, slot, value) {
@ -823,15 +823,18 @@ function getAccountValue(account, accountValues, type, slot, preftype, isGeneric
//
// restore the values of the widgets from the given server
//
function restorePage(pageId, serverId) {
if (!serverId) return;
function restorePage(pageId, serverId)
{
if (!serverId)
return;
var accountValues = getValueArrayFor(serverId);
if (!accountValues)
return true;
return;
var pageElements = getPageFormElements();
if (pageElements == null) return;
if (!pageElements)
return;
var account = getAccountFromServerId(serverId);