Update jquery to 1.5.1

(didn't think I'd be doing this in 2020! :D)
This commit is contained in:
Luke Kysow
2020-06-25 13:41:10 -07:00
parent 306df08f6f
commit 197972a195
8 changed files with 57 additions and 21 deletions

1
go.mod
View File

@@ -16,6 +16,7 @@ require (
github.com/docker/docker v0.0.0-20180620051407-e2593239d949
github.com/elazarl/go-bindata-assetfs v1.0.0
github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568
github.com/go-bindata/go-bindata v3.1.2+incompatible // indirect
github.com/go-ozzo/ozzo-validation v0.0.0-20170913164239-85dcd8368eba
github.com/go-playground/locales v0.12.1 // indirect
github.com/go-playground/universal-translator v0.16.0 // indirect

3
go.sum
View File

@@ -52,6 +52,9 @@ github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568 h1:BMXYYRWT
github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:rZfgFAXFS/z/lEd6LJmf9HVZ1LkgYiHx5pHhV5DR16M=
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/go-bindata/go-bindata v1.0.0 h1:DZ34txDXWn1DyWa+vQf7V9ANc2ILTtrEjtlsdJRF26M=
github.com/go-bindata/go-bindata v3.1.2+incompatible h1:5vjJMVhowQdPzjE1LdxyFF7YFTXg5IgGVW4gBr5IbvE=
github.com/go-bindata/go-bindata v3.1.2+incompatible/go.mod h1:xK8Dsgwmeed+BBsSy2XTopBn/8uK2HWuGSnA11C3Joo=
github.com/go-ozzo/ozzo-validation v0.0.0-20170913164239-85dcd8368eba h1:P0TvLfAFQ/hc8Q+VBsrgzGv52DxTjAu199VHbAI4LLQ=
github.com/go-ozzo/ozzo-validation v0.0.0-20170913164239-85dcd8368eba/go.mod h1:gsEKFIVnabGBt6mXmxK0MoFy+cZoTJY6mu5Ll3LVLBU=
github.com/go-playground/locales v0.12.1 h1:2FITxuFt/xuCNP1Acdhv62OzaCiviiE4kotfhkmOqEc=

File diff suppressed because one or more lines are too long

View File

@@ -5,7 +5,7 @@
text-align: center; }
img.hero {
height: 20vh;
max-height: 240px;
max-height: 120px;
width: auto;
max-width: 241px
}
@@ -322,4 +322,4 @@ footer {
right: 0;
color: grey;
padding-right: 10px;
}
}

File diff suppressed because one or more lines are too long

2
server/static/js/jquery-3.5.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -59,7 +59,7 @@ var indexTemplate = template.Must(template.New("index.html.tmpl").Parse(`
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="{{ .CleanedBasePath }}/static/js/jquery-3.2.1.min.js"></script>
<script src="{{ .CleanedBasePath }}/static/js/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function () {
$("p.js-discard-success").toggle(document.URL.indexOf("discard=true") !== -1);
@@ -141,7 +141,7 @@ var lockTemplate = template.Must(template.New("lock.html.tmpl").Parse(`
<link rel="stylesheet" href="{{ .CleanedBasePath }}/static/css/skeleton.css">
<link rel="stylesheet" href="{{ .CleanedBasePath }}/static/css/custom.css">
<link rel="icon" type="image/png" href="{{ .CleanedBasePath }}/static/images/atlantis-icon.png">
<script src="{{ .CleanedBasePath }}/static/js/jquery-3.2.1.min.js"></script>
<script src="{{ .CleanedBasePath }}/static/js/jquery-3.5.1.min.js"></script>
</head>
<body>
<div class="container">
@@ -287,7 +287,7 @@ var githubAppSetupTemplate = template.Must(template.New("github-app.html.tmpl").
}
</style>
<link rel="icon" type="image/png" href="/static/images/atlantis-icon.png">
<script src="/static/js/jquery-3.2.1.min.js"></script>
<script src="/static/js/jquery-3.5.1.min.js"></script>
</head>
<body>
<div class="container">

2
vendor/modules.txt vendored
View File

@@ -89,6 +89,8 @@ github.com/fatih/color
github.com/flynn-archive/go-shlex
# github.com/fsnotify/fsnotify v1.4.7
github.com/fsnotify/fsnotify
# github.com/go-bindata/go-bindata v3.1.2+incompatible
## explicit
# github.com/go-ozzo/ozzo-validation v0.0.0-20170913164239-85dcd8368eba
## explicit
github.com/go-ozzo/ozzo-validation