Merge pull request #2599 from dqminh/jquery-fix

Update some jquery references to 3.5.1
This commit is contained in:
David Ashpole 2020-06-25 15:21:55 -07:00 committed by GitHub
commit 8851fa6b9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 5 deletions

View File

@ -27,7 +27,7 @@
<link rel="stylesheet" href="{{.Root}}static/containers.css">
<!-- Latest compiled and minified JavaScript -->
<script src="{{.Root}}static/jquery-3.0.0.min.js"></script>
<script src="{{.Root}}static/jquery-3.5.1.min.js"></script>
<script src="{{.Root}}static/bootstrap-4.0.0-beta.2.min.js"></script>
<script type="text/javascript" src="{{.Root}}static/google-jsapi.js"></script>

View File

@ -33,7 +33,7 @@ var bootstrapJs, _ = Asset("cmd/internal/pages/assets/js/bootstrap-4.0.0-beta.2.
var containersJs, _ = Asset("cmd/internal/pages/assets/js/containers.js")
var gchartsJs, _ = Asset("cmd/internal/pages/assets/js/gcharts.js")
var googleJsapiJs, _ = Asset("cmd/internal/pages/assets/js/google-jsapi.js")
var jqueryJs, _ = Asset("cmd/internal/pages/assets/js/jquery-3.0.0.min.js")
var jqueryJs, _ = Asset("cmd/internal/pages/assets/js/jquery-3.5.1.min.js")
var bootstrapCss, _ = Asset("cmd/internal/pages/assets/styles/bootstrap-4.0.0-beta.2.min.css")
var bootstrapThemeCss, _ = Asset("cmd/internal/pages/assets/styles/bootstrap-theme-3.1.1.min.css")
@ -48,7 +48,7 @@ var staticFiles = map[string][]byte{
"containers.js": containersJs,
"gcharts.js": gchartsJs,
"google-jsapi.js": googleJsapiJs,
"jquery-3.0.0.min.js": jqueryJs,
"jquery-3.5.1.min.js": jqueryJs,
}
func HandleRequest(w http.ResponseWriter, u *url.URL) {

File diff suppressed because one or more lines are too long