Browse Source

Update modals.md to use Bootstrap 5 attributes

Updated modals documentation to use Bootstrap 5 syntax instead of old Bootstrap 4 syntax.
pull/22210/head
Eric Johnson 12 months ago
committed by GitHub
parent
commit
a4b02eb320
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/en/framework/ui/mvc-razor-pages/tag-helpers/modals.md

2
docs/en/framework/ui/mvc-razor-pages/tag-helpers/modals.md

@ -9,7 +9,7 @@
Basic usage:
````xml
<abp-button button-type="Primary" data-toggle="modal" data-target="#myModal">Launch modal</abp-button>
<abp-button button-type="Primary" data-bs-toggle="modal" data-bs-target="#myModal">Launch modal</abp-button>
<abp-modal centered="true" scrollable="true" size="Large" id="myModal">
<abp-modal-header title="Modal title"></abp-modal-header>

Loading…
Cancel
Save