about.js 659 B

123456789101112131415161718192021222324252627
  1. // Licensed Materials - Property of IBM
  2. //
  3. // IBM Cognos Products: pps
  4. //
  5. // (C) Copyright IBM Corp. 2005, 2017
  6. //
  7. // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  8. // This forms the javascript functions used for the About pane of
  9. // PowerPlay Studio.
  10. // The functions handle any minor browser differences.
  11. function init(){
  12. topparent.openActionPane();
  13. topparent.setActionPaneHeight("390");
  14. ContextMenu.initialize(true,false);
  15. }
  16. // This function closes the About Action Pane
  17. function closeActionPane() {
  18. topparent.clearActionPane();
  19. topparent.closeActionPane();
  20. }