diff options
| author | Hannah Issermann <[email protected]> | 2023-03-24 15:05:56 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-24 16:05:56 +0200 |
| commit | 2008c65c54c36fabf6c59e99591fc231708f6fa2 (patch) | |
| tree | 4bcc3a0008f9644087273fdc5bb933ef5840320c /site/content/docs/5.3/getting-started/javascript.md | |
| parent | 0653e7f648831be10ec3c9be635e6c0ebfe0de13 (diff) | |
| download | bootstrap-2008c65c54c36fabf6c59e99591fc231708f6fa2.tar.xz bootstrap-2008c65c54c36fabf6c59e99591fc231708f6fa2.zip | |
Docs: fix two class attributes on same button (#38317)
Diffstat (limited to 'site/content/docs/5.3/getting-started/javascript.md')
| -rw-r--r-- | site/content/docs/5.3/getting-started/javascript.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/content/docs/5.3/getting-started/javascript.md b/site/content/docs/5.3/getting-started/javascript.md index f80e6f26a..827cd2199 100644 --- a/site/content/docs/5.3/getting-started/javascript.md +++ b/site/content/docs/5.3/getting-started/javascript.md @@ -65,7 +65,7 @@ To fix this, you can use an `importmap` to resolve the arbitrary module names to </head> <body> <h1>Hello, modularity!</h1> - <button id="popoverButton" type="button" class="btn btn-primary btn-lg" class="btn btn-lg btn-danger" data-bs-toggle="popover" title="ESM in Browser" data-bs-content="Bang!">Custom popover</button> + <button id="popoverButton" type="button" class="btn btn-primary btn-lg" data-bs-toggle="popover" title="ESM in Browser" data-bs-content="Bang!">Custom popover</button> <script async src="https://cdn.jsdelivr.net/npm/es-module-shims@1/dist/es-module-shims.min.js" crossorigin="anonymous"></script> <script type="importmap"> |
