@ventum-digital/iiq-plugin-project-generator
Version:
A npm tool to set-up the project structure for developing an IIQ Plugin.
14 lines (13 loc) • 430 B
text/typescript
document.addEventListener('DOMContentLoaded', () => {
// @ts-ignore
const url = SailPoint.CONTEXT_PATH + '/plugins/pluginPage.jsf?pn=__pluginName__';
// @ts-ignore
jQuery("#preferenceMenu").parent().find(".dropdown-menu")
.append(
'<li role="presentation">\n' +
' <a href="' + url +'" role="menuitem" class="menuitem">\n' +
' __pluginDisplayName__' +
' </a>\n' +
'</li>'
);
});