this is not part of build yet

This commit is contained in:
morse%netscape.com 2000-07-29 20:45:44 +00:00
parent 792ad45230
commit eb4a389461

View File

@ -42,9 +42,16 @@ your Form Manager Information here</font></font></font></h3></center>
.createInstance(Components.interfaces.nsIBrowserInstance);
if (appCore) {
status = appCore.walletRequestToCapture(window._content);
alert("Your interview information has been saved, status="+status);
if (status == -1) { /* UnableToCapture */
alert("UnableToCapture");
} else if (status == 0) { /* Captured */
alert("Your interview information has been saved");
} else if (status == +1) { /* NotCaptured */
alert("There is no information to save.");
}
} else {
alert("no appCore");
alert("Error occured when trying to save data");
}
}