update sweetAlert and fix scrolling after copy (#15542)

This commit is contained in:
mohamed chiheb ben jemaa
2019-08-22 01:20:32 +01:00
committed by Kubernetes Prow Robot
parent b7c886938e
commit 63eb064d96
6 changed files with 6 additions and 11 deletions
-1
View File
@@ -17,7 +17,6 @@
<link rel="stylesheet" href="/css/case-study-styles.css">
{{- end }}
<link rel="stylesheet" href="{{ "css/jquery-ui.min.css" | relURL }}">
<link rel="stylesheet" href="{{ "css/sweetalert.min.css" | relURL }}">
<link rel="stylesheet" href="{{ "css/callouts.css" | relURL }}">
<link rel="stylesheet" href="{{ "css/custom-jekyll/tags.css" | relURL }}">
{{- if .Params.deprecated }}
+2 -1
View File
@@ -37,7 +37,8 @@
<script src="{{ "js/jquery-3.2.1.min.js" | relURL }}"></script>
<script src="{{ "js/jquery-ui-1.12.1.min.js" | relURL }}"></script>
<script src="{{ "js/bootstrap-4.3.1.min.js" | relURL }}"></script>
<script src="{{ "js/sweetalert-1.1.3.min.js" | relURL }}"></script>
<script src="{{ "js/sweetalert-2.1.2.min.js" | relURL }}"></script>
<script src="{{ "js/script.js" | relURL }}"></script>
<script src="{{ "js/custom-jekyll/tags.js" | relURL }}"></script>
{{ with .Params.js }}{{ range (split . ",") }}<script src="{{ (trim . " ") | relURL }}"></script><!-- custom js added -->
-5
View File
File diff suppressed because one or more lines are too long
+3 -3
View File
@@ -40,13 +40,13 @@ function copyCode(elem){
try {
succeed = document.execCommand("copy");
} catch(e) {
sweetAlert("Oh, no...","Sorry, your browser doesn't support document.execCommand('copy'), so we can't copy this code to your clipboard.");
swal("Oh, no...","Sorry, your browser doesn't support document.execCommand('copy'), so we can't copy this code to your clipboard.");
succeed = false;
}
if (succeed) sweetAlert("Copied to clipboard: ",elem);
if (succeed) swal("Copied to clipboard: ",elem);
return succeed;
} else {
sweetAlert("Oops!",elem + " not found when trying to copy code");
swal("Oops!",elem + " not found when trying to copy code");
return false;
}
}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long