I am trying to create a custom javascript event. The event works and fires correctly, but the \'detail\' object that I\'m passing it is not available.
Here\'s the code i
You need to access the originalEvent property for the details
console.log(e.originalEvent.detail);