Skip to content

ELN Step Section

With this plugin you can add new Step Sections to the ELN.

Step sections

The @scifeonElnStepSection is used:

@scifeonElnStepSection({
id: "customSectionId",
title: "Custom Title",
})

The following snippet adds three menu items to the main menu, contributions.json:

{
...
"menu": {
"main": [
{
"text": "Simple item",
"rank": 100,
"routeId": "customRouteId"
},
{
"html": "<a href=\"https://docs.scifeon.com\" target=\"_blank\">Sci Docs</a>"
},
{
"text": "Sci Docs",
"uri": "http://docs.scifeon.com"
}
]
}
}