sandeshyadav β created an issue.
Just adding a screenshot to help in understanding the issue.
At the bottom of admin/config/content/formats/manage/full_html
Upgrading to D11 won't be needed because this option is available by default in CKEditor 5.
You can enable by visiting /admin/config/content/formats
and selecting to configure your desired Text format.
sandeshyadav β created an issue.
Can we change the status from Active to Fixed? This issue has been fixed in the latest version 7.x-1.9.
Corrected the link of the Outline Buttons text to https://getbootstrap.com/docs/5.2/components/buttons/#outline-buttons.
Added small explanation and issue link related to Affix(currently not working).
sandeshyadav β made their first commit to this issueβs fork.
If you landed to this page due to issues with dropdowns in the navbar, here is the cause of the problem and possible solutions.
What is the causing the issue?
For the dropdown to work, bootstrap uses a third party library popperjs. In the THEME.libraries.yml
file of `SASS Starter Kit`, this library is missing which is causing the issue.
To fix it,
Use bootstrap.bundle.min.js
instead of bootstrap.min.js
. The bootstrap.bundle.min.js
file includes popperjs library and thus solves the issue. You can use a CDN link(//cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js
) in your THEME.libraries.yml
file.
As mentioned by @GazzaT in
#3
π¬
Why bootstrap is loaded from node module and not from libraries.yml like Barrio? (bug with the navbar)
Needs review
, adding js/popper.min.js: { weight: -49 }
to the THEME.libraries.yml
solves the issue.
Make sure to keep the weight -49 or lesser because popper.min.js
needs to loaded before bootstrap.min.js
. From the bootstrap docs,
If you decide to go with the separate scripts solution, Popper must come first (if you're using tooltips or popovers), and then our JavaScript plugins
.
I would prefer because it is a modular approach and lets us exclude it(popperjs) if not required.
As mentioned by @perke in #5, adding following under the dependencies in your `THEME.libraries.yml` fixes the issue.
- core/once
I tested in Drupal 10.