ExploreWithAAFAction.js 653 B

12345678910111213141516171819
  1. /*
  2. *+------------------------------------------------------------------------+
  3. *| Licensed Materials - Property of IBM
  4. *| IBM Cognos Products: Viewer
  5. *| (C) Copyright IBM Corp. 2001, 2011
  6. *|
  7. *| US Government Users Restricted Rights - Use, duplication or
  8. *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  9. *|
  10. *+------------------------------------------------------------------------+
  11. */
  12. function ExploreWithAAFAction() {}
  13. ExploreWithAAFAction.prototype = new CognosViewerAction();
  14. ExploreWithAAFAction.prototype.execute = function() {
  15. window.open(this.m_oCV.getGateway() + this.m_oCV.envParams.aafBaseURL, "_blank");
  16. };