123456789101112131415 |
- /*
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: Viewer
- *| (C) Copyright IBM Corp. 2001, 2011
- *|
- *| US Government Users Restricted Rights - Use, duplication or
- *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- *|
- *+------------------------------------------------------------------------+
- */
- function IPromptDialog(){}
- IPromptDialog.prototype.initialize = function(url,width,height) { if(typeof console != "undefined") { console.log("Required method IModalDialog:initialize not implemented."); } };
- IPromptDialog.prototype.show = function() { if(typeof console != "undefined") { console.log("Required method IModalDialog:show not implemented."); } };
- IPromptDialog.prototype.hide = function() { if(typeof console != "undefined") { console.log("Required method IModalDialog:hide not implemented."); } };
|