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
Dropdown has a dispose() function which contains:
super.dispose() EventHandler.off(this._element, EVENT_KEY) ...
Unfortunatelly, in the base class BaseComponent there is the dispose() function which contains
Data.removeData(this._element, this.constructor.DATA_KEY) this._element = null
When dropdown dispose() function is called
The text was updated successfully, but these errors were encountered:
...and in EventHandler.off(this._element, EVENT_KEY), the EVENT_KEY is weird: .bs.carousel
EventHandler.off(this._element, EVENT_KEY)
EVENT_KEY
.bs.carousel
Sorry, something went wrong.
Can someone submit a PR please? Thanks!
Successfully merging a pull request may close this issue.
Dropdown has a dispose() function which contains:
Unfortunatelly, in the base class BaseComponent there is the dispose() function which contains
When dropdown dispose() function is called
The text was updated successfully, but these errors were encountered: