action-handlers.bridge.js 1.0 KB

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. /*
  3. *+------------------------------------------------------------------------+
  4. *| Licensed Materials - Property of IBM
  5. *| IBM Cognos Products: Explore
  6. *| (C) Copyright IBM Corp. 2018
  7. *|
  8. *| US Government Users Restricted Rights - Use, duplication or disclosure
  9. *| restricted by GSA ADP Schedule Contract with IBM Corp.
  10. *+------------------------------------------------------------------------+
  11. */
  12. /**
  13. * WARNING: The files in the src/js/bridges directory are bundle dropins.
  14. * Please exercise extra caution while modifying paths.
  15. */
  16. define('explore/create', ['explore/bundles/action-handlers.min'], function (entry) {
  17. return entry.NewActionHandler;
  18. });
  19. define('explore/open', ['explore/bundles/action-handlers.min'], function (entry) {
  20. return entry.OpenActionHandler;
  21. });
  22. define('explore/share', ['explore/bundles/action-handlers.min'], function (entry) {
  23. return entry.ShareActionHandler;
  24. });
  25. define('explore/bundles/action-handlers.bridge', function () {});
  26. //# sourceMappingURL=action-handlers.bridge.js.map