12345678910111213141516171819202122232425262728293031323334 |
- 'use strict';
- /*
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: Storytelling
- *| (C) Copyright IBM Corp. 2019
- *|
- *| US Government Users Restricted Rights - Use, duplication or disclosure
- *| restricted by GSA ADP Schedule Contract with IBM Corp.
- *+------------------------------------------------------------------------+
- */
- define([], function () {
- 'use strict';
- // Temporary array of collection contributions.
- // These should also exist in the perspective file, and be removed once they are in an installkit.
- /*
- example: (from perspectives/story/contrib/timeline.json)
- {
- "containerId": "com.ibm.bi.dashboard.boardModelExtension",
- "id": "com.ibm.bi.dashboard.boardModel.timelineExtension",
- "name": "timeline",
- "class": "storytelling/model/TimelineModel",
- "type": "model",
- "autoCreate": false
- }
- */
- // ATTENTION reviewers:
- // anything added here must also exist and be identical to a contribution in one of the perspective contrib folder.
- return [];
- });
- //# sourceMappingURL=InlineContributions.js.map
|