123456789101112131415161718192021222324252627 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2016, 2017
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['./TitleSceneLayout'], function (TitleSceneLayout) {
- var scene1 = TitleSceneLayout.get();
- return {
- layout: {
- type: 'slideshow',
- items: [scene1.layout],
- style: {
- height: '100%'
- },
- transition: 'animatedPath',
- pageSize: {
- width: 1280,
- height: 720
- },
- 'layoutPositioning': 'relative'
- },
- widgets: scene1.widgets
- };
- });
- //# sourceMappingURL=SlideShowLayout.js.map
|