Hover context menu is not showing

Hi,

When i use your online demo, i get the hover menu, where I can see the menu with the wrench (and other tools), but in my own solution it does not show. I tried both the viewer and the modeler. This is my code:

var BpmnNavigatedViewer = window.BpmnJS;

var viewer = new BpmnNavigatedViewer({
    container: $('.bpmn-container')
});

viewer.importXML(xml, function (err) {

            if (err) {
                console.log('error rendering', err);
            } else {
                viewer.get("canvas").zoom("fit-viewport");

                $('.bpmn-container').css('height','800px');
            }
        });

Hey,

the context pad should be visible if you instantiate the modeler like in our examples:

The context pad is not available in the Viewer or NavigatedViewer.