GIF94;
| Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/elements/ |
| Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/elements/global-actions.php |
<?php
namespace Breakdance\Elements;
add_filter('breakdance_element_actions', '\Breakdance\Elements\addGlobalActions', 100, 1);
/**
* @param BuilderActions[] $actions
* @return BuilderActions[]
*/
function addGlobalActions($actions)
{
$actions[] = [
'onMountedElement' => [
[
'script' => <<<JS
if (typeof BreakdanceLightbox !== 'undefined') {
BreakdanceLightbox.autoload();
}
if (typeof BreakdanceLazyLoad !== 'undefined') {
BreakdanceLazyLoad.autoload();
}
JS
],
]
];
return $actions;
}