Skip to content

Commit ccaf409

Browse files
committed
Format code
1 parent 0f64ab2 commit ccaf409

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

addons/editor-number-arrow-keys/userscript.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ export default async function ({ addon }) {
7777
const isSupportedElement = (el) => {
7878
let inputSelector = " input:is([type=text], [type=number])";
7979
if (!el.classList) return false;
80-
if (el.classList.contains("blocklyHtmlInput")) return true; // Block inputs do not have a type to change
80+
if (el.classList.contains("blocklyHtmlInput"))
81+
return true; // Block inputs do not have a type to change
8182
else if (el.matches("[class*=mediaRecorderPopupContent]" + inputSelector)) {
8283
// Number inputs in `mediarecorder` addon modal
8384
return true;

0 commit comments

Comments
 (0)