Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/inc/panel-builder/footer/top-row/sync.js

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + import { handleRowVariables, handleRowOptions } from '../middle-row/sync'
2 + import ctEvents from 'ct-events'
3 +
4 + ctEvents.on(
5 + 'ct:footer:sync:collect-variable-descriptors',
6 + (variableDescriptors) => {
7 + variableDescriptors['top-row'] = handleRowVariables
8 + }
9 + )
10 +
11 + ctEvents.on('ct:footer:sync:item:top-row', (changeDescriptor) =>
12 + handleRowOptions({
13 + selector: '.ct-footer [data-row="top"]',
14 + changeDescriptor,
15 + })
16 + )
17 +