-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
The best way to use custom event is, until now:
$(elements).on(Plugin.events.customEventName, function () {});
I'm considering adding a new method to the Plugin object:
$(elements).on(Plugin.getEvent(customEventString), function () {});
The main goal is to ease the use of namespaced and/or multiple custom events.
Reactions are currently unavailable