/** * Plugin for embed mode in Confluence Connect. */ Draw.loadPlugin(function(ui) { // Changes support link in Help menu ui.actions.addAction('support...', function() { window.open('https://support.draw.io/display/DFCC/draw.io+for+Confluence+Cloud'); }); // Display footer and alter it var td = document.getElementById('geFooterItem2'); if (td != null) { td.innerHTML = '' + '  Enjoying draw.io for free? Please help us to a 4 star rating'; } td = document.getElementById('geFooterItem1'); if (td != null) { td.parentNode.removeChild(td); } td = document.getElementById('geFooterItem3'); if (td != null) { td.parentNode.removeChild(td); } });