Login.js 609 B

1234567891011121314151617181920212223
  1. /**
  2. * Licensed Materials - Property of IBM
  3. * IBM Cognos Products: BI
  4. * (C) Copyright IBM Corp. 2016, 2018
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. if (performance !== undefined && performance.mark !== undefined) {
  8. performance.mark('index-requireBundles-start');
  9. }
  10. require([
  11. 'caglass/app/LoginCA',
  12. 'promise',
  13. 'domReady!'
  14. ], function(LoginCA) {
  15. return LoginCA(inlineContext);
  16. });
  17. /**
  18. * Let parent know that a login page exists.
  19. */
  20. if (typeof parent.OnReportOutput == 'function') {
  21. parent.OnReportOutput();
  22. }