PluginProbe
Extendify / trunk
Extendify vtrunk
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | src/QuickEdit/lib/dom.js +1 -1 3.1.2 → trunk View file →
@@ -238,9 +238,9 @@
238 238 'read-more',
239 239 'term-description',
240 240 ]);
241 241
242 -const detectBlockType = (el) => {
242 +export const detectBlockType = (el) => {
243 243 let firstWpBlockClass = null;
244 244 for (const cls of el.classList) {
245 245 if (KNOWN_UNSUPPORTED.has(cls)) return null;
246 246 if (!firstWpBlockClass && cls.startsWith('wp-block-')) {