-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
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
Your demo Bootstrap 3 latest version doesn't work #89
Comments
@xcash also these links redirect to localhost:9000 |
@Ahmed-Aboud those links are for the development environment (as stated above in the README) |
I had the same issue after updating from 2.3.0 to 2.3.7. I downgraded to 2.3.5 and it worked. I have the impression that a bootstrap-autocomplete/src/dropdownV3.ts Line 207 in 34053e8
|
The problem is that the https://github.com/twbs/bootstrap/blob/v3.4.1/less/dropdowns.less#L121 This will fix the example: Without the class the list exists but is never shown: |
Hi @mbrodala and thanks. |
@xcash It would help if you could make another 2.x release with In any case I'd expect the following to help: public show(): void {
if (!this.shown) {
this._dd.dropdown().show();
+ this._dd.parent().addClass('open');
this.shown = true;
}
} public hide(): void {
if (this.shown) {
+ this._dd.parent().removeClass('open');
this._dd.dropdown().hide();
this.shown = false;
}
} |
@xcash Can you create a branch for version 2.x first where PRs could be pushed for? |
Alright, I've ported the fix now: #129 |
@xcash Not sure what to do about the |
@mbrodala thank you very much, I was getting mad until I noticed the inline styles injected to the UL didn't match in versions prior to 2.3.6 |
Describe the bug
The Bootstrap 3 demo page doesn't work. Only the Bootstrap 4 demo page work. JSON file is loaded but nothing are displayed ! I get the same issue on my test environment.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Suggestions appear..
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: