SlideShowLayout.js 670 B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2016, 2017
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. define(['./TitleSceneLayout'], function (TitleSceneLayout) {
  8. var scene1 = TitleSceneLayout.get();
  9. return {
  10. layout: {
  11. type: 'slideshow',
  12. items: [scene1.layout],
  13. style: {
  14. height: '100%'
  15. },
  16. transition: 'animatedPath',
  17. pageSize: {
  18. width: 1280,
  19. height: 720
  20. },
  21. 'layoutPositioning': 'relative'
  22. },
  23. widgets: scene1.widgets
  24. };
  25. });
  26. //# sourceMappingURL=SlideShowLayout.js.map