We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Whenever I use bootstrap selects on IE8 the select event is fired twice, causing the listener to run twice. This caused considerable slowdown.
I wrote a quick fix to the problem, but since I know nothing about the codebase I'm not sure if its a paticularly robust solution.
Original code:
if (el.fireEvent) { event = document.createEventObject(); event.eventType = eventName; el.fireEvent('on' + eventName, event); } this.trigger(eventName);
IE 8 compatible code:
if (el.fireEvent) { event = document.createEventObject(); event.eventType = eventName; el.fireEvent('on' + eventName, event); } else { this.trigger(eventName); }
The text was updated successfully, but these errors were encountered:
Good catch - thanks. Will get this added.
Sorry, something went wrong.
8727fab
fix snapappointments#1484
0eed89d
No branches or pull requests
Whenever I use bootstrap selects on IE8 the select event is fired twice, causing the listener to run twice. This caused considerable slowdown.
I wrote a quick fix to the problem, but since I know nothing about the codebase I'm not sure if its a paticularly robust solution.
Original code:
IE 8 compatible code:
The text was updated successfully, but these errors were encountered: