| 1234567891011121314151617181920212223 |
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI
- * (C) Copyright IBM Corp. 2016, 2018
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- if (performance !== undefined && performance.mark !== undefined) {
- performance.mark('index-requireBundles-start');
- }
- require([
- 'caglass/app/LoginCA',
- 'promise',
- 'domReady!'
- ], function(LoginCA) {
- return LoginCA(inlineContext);
- });
- /**
- * Let parent know that a login page exists.
- */
- if (typeof parent.OnReportOutput == 'function') {
- parent.OnReportOutput();
- }
|