We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f64ab2 commit ccaf409Copy full SHA for ccaf409
1 file changed
addons/editor-number-arrow-keys/userscript.js
@@ -77,7 +77,8 @@ export default async function ({ addon }) {
77
const isSupportedElement = (el) => {
78
let inputSelector = " input:is([type=text], [type=number])";
79
if (!el.classList) return false;
80
- if (el.classList.contains("blocklyHtmlInput")) return true; // Block inputs do not have a type to change
+ if (el.classList.contains("blocklyHtmlInput"))
81
+ return true; // Block inputs do not have a type to change
82
else if (el.matches("[class*=mediaRecorderPopupContent]" + inputSelector)) {
83
// Number inputs in `mediarecorder` addon modal
84
return true;
0 commit comments