🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 08:20:44 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
themes
/
blocksy
/
static
/
js
/
frontend
/
woocommerce
📍 /home/eliteewa/public_html/wp-content/themes/blocksy/static/js/frontend/woocommerce
🔄 Refresh
✏️
Editing: main.js
Writable
import { onDocumentLoaded } from '../../helpers' import ctEvents from 'ct-events' import $ from 'jquery' import './handle-events' function isTouchDevice() { try { document.createEvent('TouchEvent') return true } catch (e) { return false } } export const wooEntryPoints = [ { els: 'body.single-product .woocommerce-product-gallery:has(.ct-product-gallery-container)', load: () => import('./single-product-gallery'), trigger: [ { id: 'hover-with-click', // We should never affect the pills because the click events on // the pills are very fragile and if we will do a preventDefault // on them, they will not work. This is especially tricky on // touch devices. // // Same situation for arrows, we should not interfere with their // click events. ignoredEls: ['.flexy-pills', '[class*="flexy-arrow-"]'] } ] }, { els: 'form.variations_form', condition: () => !!document.querySelector( '.woocommerce-product-gallery .ct-media-container' ), load: () => import('./variable-products'), ...(isTouchDevice() || document.querySelectorAll( 'form.variations_form[data-product_variations="false"]' ) ? {} : { trigger: ['hover'] }) }, { els: '.quantity .ct-increase, .quantity .ct-decrease', load: () => import('./quantity-input'), trigger: ['click'] }, { els: '.ct-woocommerce-cart-form .quantity .qty', load: () => import('./quantity-input'), trigger: ['change'] }, { els: '.ct-cart-auto-update .woocommerce-cart-form__cart-item input:not(.qty)', load: () => import('./additional-inputs-autoupdate'), trigger: ['change'] }, { els: () => [ ...document.querySelectorAll('[data-add-to-cart="ajax"]'), ] .map((el) => el.closest('form')) .filter(Boolean), load: () => import('./add-to-cart-single'), trigger: [ { id: 'submit', ignoreSubmitter: ['button[name]:not([name="add-to-cart"])'] } ] }, { els: '.ct-header-cart > .ct-cart-item, .ajax_add_to_cart, [data-add-to-cart="ajax"]', load: () => import('./mini-cart'), events: ['ct:header:update'], trigger: ['hover-with-touch'] }, { els: '#woo-cart-panel .qty', trigger: ['change'], load: () => import('./quantity-update') }, { els: '.product .ct-card-variation-swatches', load: () => import('./variation-stock'), condition: () => !!document.querySelector('.product .ct-woo-card-stock'), trigger: ['hover'] } ]
💾 Save Changes
❌ Cancel