Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 556575c8529a6fb9db1720917dad3b21d14f8972 (plain) (blame)
1
2
3
4
/*******************************************************************************
 * Copyright (c) 2007, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 ******************************************************************************
 *
 **/
/**
  * Object popup()
  * @type popup
  * @super Object
  * @memberOf popup
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535882.aspx
*/

function popup(){};
popup.prototype= new Object();
/**
  * Property document
  * @type document
  * @returns {document}
  * @memberOf popup
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533738.aspx
*/

popup.prototype.document=new document();
/**
  * Property document
  * @type document
  * @returns {document}
  * @memberOf popup
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms531073.aspx
*/

popup.prototype.document= new document();
/**
  * Property isOpen
  * @type Boolean
  * @returns {Boolean}
  * @memberOf popup
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533916.aspx
*/

popup.prototype.isOpen=false;
/**
  * function hide()
  * @memberOf popup
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536448.aspx
*/

popup.prototype.hide=function(){};
/**
  * function hide()
  * @memberOf popup
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536448.aspx
*/

popup.prototype.hide=function(){};
/**
  * function show(iX)
  * @param {show} iX
  * @memberOf popup
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536755.aspx
*/

popup.prototype.show=function(iX){};

Back to the top