12345678910111213141516171819202122232425262728293031323334 |
- 'use strict';
- /*
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: Notebook
- *| (C) Copyright IBM Corp. 2018, 2019
- *|
- *| US Government Users Restricted Rights - Use, duplication or disclosure
- *| restricted by GSA ADP Schedule Contract with IBM Corp.
- *+------------------------------------------------------------------------+
- */
- define('notebook/NewNotebookActionHandler', ['notebook/bundles/glass.min'], function (entry) {
- return entry.NewNotebookActionHandler;
- });
- define('notebook/OpenNotebookActionHandler', ['notebook/bundles/glass.min'], function (entry) {
- return entry.OpenNotebookActionHandler;
- });
- define('notebook/RunNotebookActionHandler', ['notebook/bundles/glass.min'], function (entry) {
- return entry.RunNotebookActionHandler;
- });
- define('notebook/ShareNotebookActionHandler', ['notebook/bundles/glass.min'], function (entry) {
- return entry.ShareNotebookActionHandler;
- });
- define('notebook/PropertyMenuNotebook', ['notebook/bundles/glass.min'], function (entry) {
- return entry.PropertyMenuNotebook;
- });
- define('notebook/UploadModuleActionHandler', ['notebook/bundles/glass.min'], function (entry) {
- return entry.UploadModuleActionHandler;
- });
- define('notebook/bundles/glass.bridge', function () {});
- //# sourceMappingURL=glass.bridge.js.map
|