We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0ba80ed + 9d9d691 commit 59a412cCopy full SHA for 59a412c
src/Strikes/my-strikes.html
@@ -108,7 +108,9 @@
108
}
109
110
</style>
111
- <script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
+ <script src="https://code.jquery.com/jquery-1.12.0.min.js"
112
+ integrity="sha256-Xxq2X+KtazgaGuA2cWR1v3jJsuMJUozyIXDB3e793L8="
113
+ crossorigin="anonymous"></script>
114
</head>
115
<body>
116
<nav class="menu-container">
@@ -172,7 +174,7 @@ <h2>Staff3</h2>
172
174
// Parse the URL parameter
173
175
function getParameterByName(name, url) {
176
if (!url) url = window.location.href;
- name = name.replace(/[\[\]]/g, "\\$&");
177
+ name = name.replace(/[\\[\]]/g, "\\$&");
178
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
179
results = regex.exec(url);
180
if (!results) return null;
0 commit comments