We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a642c54 commit d12b165Copy full SHA for d12b165
utils/editors/js-console/v3.0/js-console-v3.0.html
@@ -277,13 +277,6 @@
277
278
<button id=run>run</button>
279
280
- <div id=iframe-root>
281
- <span>
282
- iframe
283
- </span>
284
- <input id=iframe type=checkbox checked>
285
- </div>
286
-
287
<div id=async-root>
288
<span>
289
async
@@ -366,7 +359,6 @@
366
359
367
360
368
361
$(root,'#run').onclick = run;
369
- mode.iframe = $(root,'#iframe');
370
362
mode.async = $(root,'#async');
371
363
372
364
$(root,'#syntax-chk').onclick = btn.syntax;
@@ -426,7 +418,6 @@
426
418
var url = new URL(window.location);
427
419
var params = url.searchParams;
428
420
429
- mode.iframe.checked = params.has('iframe');
430
421
mode.async.checked = params.has('async');
431
422
432
423
}//query
0 commit comments