BlankSceneLayout.js 791 B

1234567891011121314151617181920212223242526272829303132333435
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: Storytelling (C) Copyright IBM Corp. 2018
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. define([], function () {
  8. return {
  9. get: function get() {
  10. return {
  11. layout: {
  12. type: 'container',
  13. templateName: 'Template1',
  14. items: [{
  15. type: 'genericPage',
  16. layoutPositioning: 'relative',
  17. css: 'templateBox aspectRatio_default',
  18. items: [{
  19. type: 'templateIndicator',
  20. style: {
  21. 'top': '0%',
  22. 'left': '0%',
  23. 'right': '0%',
  24. 'bottom': '0%'
  25. }
  26. }]
  27. }]
  28. },
  29. widgets: {}
  30. };
  31. }
  32. };
  33. });
  34. //# sourceMappingURL=BlankSceneLayout.js.map