Skip to content

Commit 3fd4669

Browse files
authored
Merge pull request #1650 from Conengmo/bootstrap-5-take-2
Bootstrap 5 (take 2)
2 parents 458f560 + ad08981 commit 3fd4669

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

folium/folium.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
('jquery',
3030
'https://code.jquery.com/jquery-1.12.4.min.js'),
3131
('bootstrap',
32-
'https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js'),
32+
'https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js'),
3333
('awesome_markers',
3434
'https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js'), # noqa
3535
]
@@ -38,9 +38,10 @@
3838
('leaflet_css',
3939
'https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css'),
4040
('bootstrap_css',
41-
'https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css'),
42-
('bootstrap_theme_css',
43-
'https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css'), # noqa
41+
'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'),
42+
# glyphicons came from Bootstrap 3 and are used for Awesome Markers
43+
('glyphicons_css',
44+
'https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css'),
4445
('awesome_markers_font_css',
4546
'https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css'), # noqa
4647
('awesome_markers_css',

0 commit comments

Comments
 (0)