Integration using Atlas

If you are not using Atlas yet, you will first need to follow the instructions to install Atlas

Customizing the menu

Once you have Atlas up and running, there are a couple of things you can customize on the Global Navigation Menu by calling one of the following methods:

setCurrentService

        
            var serviceCode = 'DCC';
            setCurrentService(serviceCode);
        
    

Where serviceCode can be one of the Available Services

This wil set the name of the current service on the menu option and make the current service that we pass be sected on the UI as follows (Public Cloud on the example)

Link list with selected item

setServicesList

        
            var servicesList = ['CAM', 'DCC'];
            setServicesList(servicesList);
        
    

Where servicesList is an Array of available services codes. Only the Services passed on the Array will be displayed on the menu. If not specified, all the Available Services will be displayed.