We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9afcf2 commit 72c393aCopy full SHA for 72c393a
src/core/registry.js
@@ -172,10 +172,8 @@ const registry = {
172
return (
173
!el.matches(".disable-patterns") &&
174
!el?.parentNode?.closest?.(".disable-patterns") &&
175
- !el?.parentNode?.closest?.("pre") &&
176
- !el?.parentNode?.closest?.("template") && // NOTE: not strictly necessary. Template is a DocumentFragment and not reachable except for IE.
177
- !el.matches(".cant-touch-this") && // BBB. TODO: Remove with next major version.
178
- !el?.parentNode?.closest?.(".cant-touch-this") // BBB. TODO: Remove with next major version.
+ !el?.parentNode?.closest?.("pre")
+ //!el?.parentNode?.closest?.("template") && // NOTE: not strictly necessary. Template is a DocumentFragment and not reachable except for IE.
179
);
180
});
181
0 commit comments