-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a nav_attributes argument to navbars.collapse() + version bump
- Loading branch information
Showing
2 changed files
with
36 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,11 @@ | |
|
||
|
||
__author__ = "Peter Volf" | ||
__copyright__ = "Copyright 2019, Peter Volf" | ||
__copyright__ = "Copyright 2022, Peter Volf" | ||
__email__ = "[email protected]" | ||
__license__ = "MIT" | ||
__url__ = "https://github.com/volfpeter/markyp-bootstrap4" | ||
__version__ = "0.1910.0" | ||
__version__ = "0.2210.1" | ||
|
||
|
||
__all__ = ("CDNs", "req") | ||
|
@@ -151,11 +151,7 @@ def all_js(self) -> Tuple[script, script, script]: | |
""" | ||
# Bootstrap must be the last item on the list (or at least it should come | ||
# after jQuery), otherwise some components won't work. | ||
return ( | ||
self.jquery, | ||
self.popper_js, | ||
self.bootstrap_js | ||
) | ||
return (self.jquery, self.popper_js, self.bootstrap_js) | ||
|
||
@property | ||
def bootstrap_css(self) -> link: | ||
|
@@ -185,6 +181,7 @@ def popper_js(self) -> script: | |
""" | ||
return script.ref(CDNs.PopperJS.js_url()) | ||
|
||
|
||
req: __BootstrapRequirements = __BootstrapRequirements() | ||
""" | ||
Components that are required in a page to make Bootstrap fully functional. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters