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 182ab38 commit 33a2c06Copy full SHA for 33a2c06
sqlpage/sqlpage.js
@@ -4,8 +4,7 @@
4
const nonce = document.currentScript.nonce;
5
6
function sqlpage_embed() {
7
- for (const c of document.querySelectorAll("[data-embed]")) {
8
- if (c.ariaBusy === "true") continue;
+ for (const c of document.querySelectorAll("[data-embed]:not([aria-busy=true])")) {
9
c.ariaBusy = true;
10
let url;
11
try {
@@ -211,4 +210,4 @@ add_init_fn(sqlpage_table);
211
210
add_init_fn(sqlpage_map);
212
add_init_fn(sqlpage_embed);
213
add_init_fn(sqlpage_form);
214
-add_init_fn(load_scripts);
+add_init_fn(load_scripts);
0 commit comments