1234567891011121314151617 |
- if (performance !== undefined && performance.mark !== undefined) {
- performance.mark('index-requireBundles-start');
- }
- require([
- 'caglass/app/StartupCA',
- 'promise',
- 'domReady!'
- ], function(StartupCA) {
- return StartupCA(inlineContext);
- });
|