123456789101112131415161718192021222324252627282930 |
- function LogOnDialog(oCV) {
- this.m_oCV = oCV;
- }
- LogOnDialog.prototype = new ILogOnDialog();
- LogOnDialog.prototype.handleUnknownHTMLResponse = function(responseText) {
- if (responseText) {
-
- document.write(responseText);
- }
- };
- LogOnDialog.prototype.show = function(soapFault) {
- launchLogOnDialog(this.m_oCV.getId(), soapFault);
- };
- LogOnDialog.prototype.hide = function() {
- };
|