We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d2728e commit 0efdaccCopy full SHA for 0efdacc
src/core/registry.js
@@ -187,10 +187,8 @@ const registry = {
187
return (
188
!el.matches(".disable-patterns") &&
189
!el?.parentNode?.closest?.(".disable-patterns") &&
190
- !el?.parentNode?.closest?.("pre") &&
191
- !el?.parentNode?.closest?.("template") && // NOTE: not strictly necessary. Template is a DocumentFragment and not reachable except for IE.
192
- !el.matches(".cant-touch-this") && // BBB. TODO: Remove with next major version.
193
- !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.
194
);
195
});
196
0 commit comments