Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ability to create custom features through config #38

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

Jondyr
Copy link

@Jondyr Jondyr commented Oct 1, 2019

This adds a config parameter to add custom buttons to the popup.
Issue reference #2 (comment)

The config parameter "customActions" takes an array of objects with two properties:

  • callback
    A callback called when the custom button is clicked. The callback function takes a parameter with the selection as a string.
  • icon
    HTML string with the icon.

Currently all custom buttons will be appended on the right side of the selection popup view.

A very basic working example is included in index.html:

selection.config({
    customActions: [
        {
            "callback": (selection) => {alert(selection)}, 
            "icon": customSvg
        }
    ]
})

Looking for feedback

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant