| 1234567891011121314151617181920212223242526272829303132333435 | 'use strict';/** * Licensed Materials - Property of IBM * IBM Cognos Products: Storytelling (C) Copyright IBM Corp. 2018 * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */define([], function () {	return {		get: function get() {			return {				layout: {					type: 'container',					templateName: 'Template1',					items: [{						type: 'genericPage',						layoutPositioning: 'relative',						css: 'templateBox aspectRatio_default',						items: [{							type: 'templateIndicator',							style: {								'top': '0%',								'left': '0%',								'right': '0%',								'bottom': '0%'							}						}]					}]				},				widgets: {}			};		}	};});//# sourceMappingURL=BlankSceneLayout.js.map
 |