oncebot / popbox.js

A tiny and simple stackable modal plugin for web apps
MIT License
296 stars 17 forks source link

How to listen to emitted events ? #5

Open arnaudthuillier opened 4 years ago

arnaudthuillier commented 4 years ago

Hello,

I have some youtube video playing inside a popbox modal. I want to pause the video when closing the modal. I'm trying to listen to event popbox_closing like so : var popbox = new Popbox(); popbox.addEventListener('popbox_closing', function () { video.pause(); }, false);

But it's not working : popbox.addEventListener is not a function

What should I do ?

Thanks