We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108e312 commit 31165d4Copy full SHA for 31165d4
sqlpage/sqlpage.js
@@ -41,6 +41,9 @@ function sqlpage_select_dropdown(){
41
if (!window.TomSelect) {
42
const script = document.createElement("script");
43
script.src= src;
44
+ script.integrity = "sha384-aAqv9vleUwO75zAk1sGKd5VvRqXamBXwdxhtihEUPSeq1HtxwmZqQG/HxQnq7zaE";
45
+ script.crossOrigin = "anonymous";
46
+ script.nonce = document.currentScript.nonce;
47
script.onload = sqlpage_select_dropdown;
48
document.head.appendChild(script);
49
return;
0 commit comments