Skip to content

Commit 3043e16

Browse files
authored
Merge pull request #1086 from Conengmo/jquery-cdn
Use jquery.com CDN instead of Google
2 parents 2795789 + eba1674 commit 3043e16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

folium/folium.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
('leaflet',
2626
'https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js'),
2727
('jquery',
28-
'https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'),
28+
'https://code.jquery.com/jquery-1.12.4.min.js'),
2929
('bootstrap',
3030
'https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js'),
3131
('awesome_markers',

folium/templates/fol_template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
44
<script>L_PREFER_CANVAS=false; L_NO_TOUCH=false; L_DISABLE_3D=false;</script>
55
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
6-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
6+
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
77
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
88
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
99
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>

0 commit comments

Comments
 (0)