12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /**
- * IBM Confidential OCO Source Materials IBM Business Platform: Glass Foundation
- * (C) Copyright IBM Corp. 2018
- *
- * 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({
- paths: {
- cahome: 'js/cahome'
- },
- map: {
- '*': {
- 'cahome/lib/@waca/bacontentnav/public/js/bacontentnav': 'bacontentnav',
- 'cahome/lib/@waca/baglass/js/baglass': 'baglass',
- 'cahome/lib/@waca/core-client': 'baglass/core-client'
- }
- },
- bundles: {
- 'js/cahome/bundle': [
- 'cahome/nls/CahomeResources',
- 'cahome/nls/root/CahomeResources',
- 'cahome/nls/StringResources',
- 'text!cahome/views/templates/HomeView.html',
- 'text!cahome/ui/templates/RefPanel.html',
- 'cahome/ui/RefPanel',
- 'text!cahome/ui/templates/RefWidget.html',
- 'cahome/ui/RefWidget',
- 'cahome/utils/UIUtils',
- 'cahome/utils/MenuUtils',
- 'text!cahome/ui/templates/Tile.html',
- 'cahome/ui/Tile',
- 'text!cahome/ui/templates/TilesView.html',
- 'cahome/lib/cahome-ui/cahome-ui.min',
- 'cahome/ui/TilesView',
- 'cahome/ui/actionHandlers/QuickLaunchHandler',
- 'text!cahome/ui/templates/QuickLaunchTarget.html',
- 'cahome/ui/QuickLaunchTarget',
- 'text!cahome/ui/templates/QuickLaunch.html',
- 'cahome/ui/QuickLaunch',
- 'cahome/ui/actionHandlers/DeleteActionHandler',
- 'cahome/ui/actionHandlers/RefreshActionHandler',
- 'cahome/views/HomeView',
- 'cahome/views/CAHomeView',
- 'cahome/ui/actionHandlers/ShareFolderActionHandler'
- ]
- }
- });
|