-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Description
Hi,
my popup always closes when I start to type something into the form.
I am using the fixed version and I can't figure out why it always closes.
Does someone have an idea?
Found the Problem :
document.onkeydown = function(evt) {
evt = evt || window.event;
if( self.options.closeEl !== '' ) {
var closeEl = self.el.querySelector( self.options.closeEl );
if( closeEl && self.expanded) {
self.toggle();
}
}
};
This caused the closing.
01dr
Metadata
Metadata
Assignees
Labels
No labels