123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * IBM Confidential OCO Source Materials IBM Business Platform: Glass Foundation
- * (C) Copyright IBM Corp. 2017
- *
- * The source code for this program is not published or otherwise divested of
- * its trade secrets, irrespective of what has been deposited with the U.S.
- * Copyright Office
- */
- requirejs.config({
- map: {
- '*': {
- 'ba_portal/lib/@waca/baglass/js/baglass': 'baglass',
- 'ba_portal/lib/@waca/core-client': 'baglass/core-client'
- }
- },
- bundles: {
- 'js/ca_portal/bundle.debug': [
- 'ba_portal/nls/BaPortalResources',
- 'ba_portal/nls/root/BaPortalResources',
- 'ba_portal/nls/StringResources',
- 'text!ba_portal/api/templates/genericIframe.html',
- 'text!ba_portal/api/templates/error.html',
- 'ba_portal/api/IFrameView',
- 'ba_portal/common/controllers/HomeActionController',
- 'ba_portal/common/controllers/AccountSettingsMenuController',
- 'ba_portal/icons/ba-icon-bundle',
- 'ba_portal/icons/CommonIconService',
- 'ca_portal/common/controllers/CognosLogoController',
- 'ca_portal/common/controllers/MyMenuController',
- 'ca_portal/common/controllers/all',
- 'ca_portal/nls/CaPortalResources',
- 'ca_portal/nls/root/CaPortalResources',
- 'ca_portal/nls/StringResources',
- 'ca_portal/common/actions/OpenMyPreferencesAction',
- 'ca_portal/common/actions/all',
- 'ca_portal/common/services/NPSService',
- 'ca_portal/common/services/all',
- 'ca_portal/features/legacyApps/list_columns/LegacyAppsIcon',
- 'ca_portal/features/legacyApps/list_columns/LegacyAppsText',
- 'require-css!css/ca_portal/legacy',
- 'ca_portal/features/legacyApps/LegacyPane',
- 'ca_portal/features/legacyApps/MenuItemController',
- 'ca_portal/features/legacyApps/all',
- 'ca_portal/features/mypreferences/LoggingConfigSlideout',
- 'ca_portal/common/Constants',
- 'ca_portal/features/mypreferences/MyPreferences',
- 'ca_portal/features/mypreferences/Tab',
- 'ca_portal/features/mypreferences/all'
- ]
- }
- });
|