/*! elementor-pro - v3.28.0 - 30-03-2025 */ "use strict"; (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["woocommerce-checkout-page"],{ /***/ "../modules/woocommerce/assets/js/frontend/handlers/base.js": /*!******************************************************************!*\ !*** ../modules/woocommerce/assets/js/frontend/handlers/base.js ***! \******************************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; class Base extends elementorModules.frontend.handlers.Base { getDefaultSettings() { return { selectors: { stickyRightColumn: '.e-sticky-right-column' }, classes: { stickyRightColumnActive: 'e-sticky-right-column--active' } }; } getDefaultElements() { const selectors = this.getSettings('selectors'); return { $stickyRightColumn: this.$element.find(selectors.stickyRightColumn) }; } bindEvents() { // Add our wrapper class around the select2 whenever it is opened. elementorFrontend.elements.$document.on('select2:open', event => { this.addSelect2Wrapper(event); }); } addSelect2Wrapper(event) { // The select element is recaptured every time because the markup can refresh const selectElement = jQuery(event.target).data('select2'); if (selectElement.$dropdown) { selectElement.$dropdown.addClass('e-woo-select2-wrapper'); } } isStickyRightColumnActive() { const classes = this.getSettings('classes'); return this.elements.$stickyRightColumn.hasClass(classes.stickyRightColumnActive); } activateStickyRightColumn() { const elementSettings = this.getElementSettings(), $wpAdminBar = elementorFrontend.elements.$wpAdminBar, classes = this.getSettings('classes'); let stickyOptionsOffset = elementSettings.sticky_right_column_offset || 0; if ($wpAdminBar.length && 'fixed' === $wpAdminBar.css('position')) { stickyOptionsOffset += $wpAdminBar.height(); } if ('yes' === this.getElementSettings('sticky_right_column')) { this.elements.$stickyRightColumn.addClass(classes.stickyRightColumnActive); this.elements.$stickyRightColumn.css('top', stickyOptionsOffset + 'px'); } } deactivateStickyRightColumn() { if (!this.isStickyRightColumnActive()) { return; } const classes = this.getSettings('classes'); this.elements.$stickyRightColumn.removeClass(classes.stickyRightColumnActive); } /** * Activates the sticky column * * @return {void} */ toggleStickyRightColumn() { if (!this.getElementSettings('sticky_right_column')) { this.deactivateStickyRightColumn(); return; } if (!this.isStickyRightColumnActive()) { this.activateStickyRightColumn(); } } equalizeElementHeight($element) { if ($element.length) { $element.removeAttr('style'); // First remove the custom height we added so that the new height can be re-calculated according to the content let maxHeight = 0; $element.each((index, element) => { maxHeight = Math.max(maxHeight, element.offsetHeight); }); if (0 < maxHeight) { $element.css({ height: maxHeight + 'px' }); } } } /** * WooCommerce prints the Purchase Note separated from the product name by a border and padding. * In Elementor's Order Summary design, the product name and purchase note are displayed un-separated. * To achieve this design, it is necessary to access the Product Name line before the Purchase Note line to adjust * its padding. Since this cannot be achieved in CSS, it is done in this method. * * @param {Object} $element * * @return {void} */ removePaddingBetweenPurchaseNote($element) { if ($element) { $element.each((index, element) => { jQuery(element).prev().children('td').addClass('product-purchase-note-is-below'); }); } } /** * `elementorPageId` and `elementorWidgetId` are added to the url in the `_wp_http_referer` input which is then * received when WooCommerce does its cart and checkout ajax requests e.g `update_order_review` and `update_cart`. * These query strings are extracted from the url and used in our `load_widget_before_wc_ajax` method. */ updateWpReferers() { const selectors = this.getSettings('selectors'), wpHttpRefererInputs = this.$element.find(selectors.wpHttpRefererInputs), url = new URL(document.location); url.searchParams.set('elementorPageId', elementorFrontend.config.post.id); url.searchParams.set('elementorWidgetId', this.getID()); wpHttpRefererInputs.attr('value', url); } } exports["default"] = Base; /***/ }), /***/ "../modules/woocommerce/assets/js/frontend/handlers/checkout-page.js": /*!***************************************************************************!*\ !*** ../modules/woocommerce/assets/js/frontend/handlers/checkout-page.js ***! \***************************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../modules/woocommerce/assets/js/frontend/handlers/base.js")); class Checkout extends _base.default { getDefaultSettings() { const defaultSettings = super.getDefaultSettings(...arguments); return { selectors: { ...defaultSettings.selectors, container: '.elementor-widget-woocommerce-checkout-page', loginForm: '.e-woocommerce-login-anchor', loginSubmit: '.e-woocommerce-form-login-submit', loginSection: '.e-woocommerce-login-section', showCouponForm: '.e-show-coupon-form', couponSection: '.e-coupon-anchor', showLoginForm: '.e-show-login', applyCoupon: '.e-apply-coupon', checkoutForm: 'form.woocommerce-checkout', couponBox: '.e-coupon-box', address: 'address', wpHttpRefererInputs: '[name="_wp_http_referer"]' }, classes: defaultSettings.classes, ajaxUrl: elementorProFrontend.config.ajaxurl }; } getDefaultElements() { const selectors = this.getSettings('selectors'); return { ...super.getDefaultElements(...arguments), $container: this.$element.find(selectors.container), $loginForm: this.$element.find(selectors.loginForm), $showCouponForm: this.$element.find(selectors.showCouponForm), $couponSection: this.$element.find(selectors.couponSection), $showLoginForm: this.$element.find(selectors.showLoginForm), $applyCoupon: this.$element.find(selectors.applyCoupon), $loginSubmit: this.$element.find(selectors.loginSubmit), $couponBox: this.$element.find(selectors.couponBox), $checkoutForm: this.$element.find(selectors.checkoutForm), $loginSection: this.$element.find(selectors.loginSection), $address: this.$element.find(selectors.address) }; } bindEvents() { super.bindEvents(...arguments); this.elements.$showCouponForm.on('click', event => { event.preventDefault(); this.elements.$couponSection.slideToggle(); }); this.elements.$showLoginForm.on('click', event => { event.preventDefault(); this.elements.$loginForm.slideToggle(); }); this.elements.$applyCoupon.on('click', event => { event.preventDefault(); this.applyCoupon(); }); this.elements.$loginSubmit.on('click', event => { event.preventDefault(); this.loginUser(); }); elementorFrontend.elements.$body.on('updated_checkout', () => { this.applyPurchaseButtonHoverAnimation(); this.updateWpReferers(); }); } onInit() { super.onInit(...arguments); this.toggleStickyRightColumn(); this.updateWpReferers(); this.equalizeElementHeight(this.elements.$address); // Equalize
boxes height if (elementorFrontend.isEditMode()) { this.elements.$loginForm.show(); this.elements.$couponSection.show(); this.applyPurchaseButtonHoverAnimation(); } } onElementChange(propertyName) { if ('sticky_right_column' === propertyName) { this.toggleStickyRightColumn(); } } onDestroy() { super.onDestroy(...arguments); this.deactivateStickyRightColumn(); } applyPurchaseButtonHoverAnimation() { const purchaseButtonHoverAnimation = this.getElementSettings('purchase_button_hover_animation'); if (purchaseButtonHoverAnimation) { // This element is recaptured every time because the checkout markup can refresh jQuery('#place_order').addClass('elementor-animation-' + purchaseButtonHoverAnimation); } } applyCoupon() { // Wc_checkout_params is required to continue, ensure the object exists // eslint-disable-next-line camelcase if (!wc_checkout_params) { return; } this.startProcessing(this.elements.$couponBox); const data = { // eslint-disable-next-line camelcase security: wc_checkout_params.apply_coupon_nonce, coupon_code: this.elements.$couponBox.find('input[name="coupon_code"]').val() }; jQuery.ajax({ type: 'POST', // eslint-disable-next-line camelcase url: wc_checkout_params.wc_ajax_url.toString().replace('%%endpoint%%', 'apply_coupon'), context: this, data, success(code) { jQuery('.woocommerce-error, .woocommerce-message').remove(); this.elements.$couponBox.removeClass('processing').unblock(); if (code.includes('woocommerce-error') || code.includes('does not exist')) { jQuery('html, body').animate({ scrollTop: 0 }, 'fast'); } if (code) { this.elements.$checkoutForm.before(code); this.elements.$couponSection.slideUp(); elementorFrontend.elements.$body.trigger('applied_coupon_in_checkout', [data.coupon_code]); elementorFrontend.elements.$body.trigger('update_checkout', { update_shipping_method: false }); } }, dataType: 'html' }); } loginUser() { this.startProcessing(this.elements.$loginSection); const data = { action: 'elementor_woocommerce_checkout_login_user', username: this.elements.$loginSection.find('input[name="username"]').val(), password: this.elements.$loginSection.find('input[name="password"]').val(), nonce: this.elements.$loginSection.find('input[name="woocommerce-login-nonce"]').val(), remember: this.elements.$loginSection.find('input#rememberme').prop('checked') }; jQuery.ajax({ type: 'POST', url: this.getSettings('ajaxUrl'), context: this, data, success(code) { code = JSON.parse(code); this.elements.$loginSection.removeClass('processing').unblock(); const messages = jQuery('.woocommerce-error, .woocommerce-message'); messages.remove(); if (code.logged_in) { location.reload(); } else { this.elements.$checkoutForm.before(code.message); elementorFrontend.elements.$body.trigger('checkout_error', [code.message]); } } }); } startProcessing($form) { if ($form.is('.processing')) { return; } /** * .block() is from a jQuery blockUI plugin loaded by WooCommerce. This code is based on WooCommerce * core in order for the Checkout widget to behave the same as WooCommerce Checkout pages. */ $form.addClass('processing').block({ message: null, overlayCSS: { background: '#fff', opacity: 0.6 } }); } } exports["default"] = Checkout; /***/ }) }]); //# sourceMappingURL=woocommerce-checkout-page.470384546c61ebcaa89d.bundle.js.map Wymagania przesylane sa czesto droga mailowa lub reklamowane do oficjalnych kanalach kasyno – InfoNile
skip to Main Content

Wymagania przesylane sa czesto droga mailowa lub reklamowane do oficjalnych kanalach kasyno

VOX Casino kod rabatowy to okazja, by wzmocnic naprawde wart depozytu i bedziesz zbierac dodatkowe spiny bez dodatkowych wydatkow. Czesto nowi, kiedys i mozesz regularni sportowcy byli w stanie oczekiwac unikalne daje ci aktywowane uzywania roznych kodow � wystarczajaco wejsc kompatybilny kod promocyjny VOX Casino na wyznaczonym polu oczywiscie, jesli dokonywania wplaty.

Ktore sa dostepne Kuponow VOX Casino

?VOX Casino Lottoland oficjalna strona internetowa codziennie udostepnia graczom przezycie zasady bonusowe, ktore umozliwiaja odebranie dodatkowych nagrod. Jest wlasciwie one wysylane na wschod-mail zarejestrowanych uzytkownikow lub po prostu dzwieki na stronie kasyno hazardowe. Od razu aktywne sa dwa glowne te kody:

Stworzyc tych ucieczke do, wystarczajaco wejsc kod kuponu na odpowiednim miejscu w skladaniu depozytu lub po prostu po prostu angazowac go do zakladce �Promocje�. Zawsze warte zachodu zaznajomic sie z regulaminem danej da ci, gdyz zasady moga sie roznic w odniesieniu do promocji.

Od dostepnego kodu VOX Casino?

A korzystanie z VOX Casino promo code naprawde deposit jest natychmiastowe i praktyczne. Podazaniu zalogowaniu sie lub po prostu rejestracji na stronie kasyno nalezy przejsc do czesc �Promocje�, gdzie jest pudelko na wpisanie kodu promocyjnego � jak TOP100 lub HOT100. Nawet gdy kodow wymagajacych wplaty, nalezy szukac jedna ktorzy maja myslec o technik inwestowania i mozesz zasilic konto w odniesieniu do warunkami zapewni ci. Kontynuowaniu zaksiegowaniu depozytu, motywacja bedzie kontynuowany zatwierdzony natychmiast.

Wymagania dostepnosci kodow VOX Casino

  1. Koniecznosc obrotu: Zdecydowana wiekszosc ofert � rowniez z nich bez depozytu � objeta jest koniecznoscia skutkowania obrotu. Chociaz bonusow depozytowych wynosi twoj zwykle x40 filozofia bonusu lub suma dodatkowy bonus + wplata.
  2. Najmniej kwota depozytu: Roznych kody bonusowe potrzebuja wplaty na okreslona kwote. Przykladowo, haslo HOT100 zadziala niedawno kontynuowaniu zasileniu poziomy kwota przynajmniej LX zl.
  3. Wyznacz gra online reklama: Bonus jest glownie dla konkretnej gry lub rodzaje. VOX casino promo code TOP100 obowiazuje wylacznie na slocie Big Bass Bonanza i nie aktywuje sie roznych innych grach.
  4. Wprowadzenie kodu przed transakcja: Produkowac haslo juz losiem, nalezy wejsc go w sekcji �Promocje� przed dokonaniem zakupow.
  5. Automatyzuja naliczenie bonusu: Kontynuowaniu poprawnym wpisaniu kodu i mozesz spelnieniu warunkow, kroki bonusowe trafia z czlonkostwo mechanicznie, bez potrzeby ekspozycja na bezposredni kasyno.
  6. Krotki czas waznosci: Rabaty oraz wydac kroki bonusowe jest wlasciwie aktywne przez okreslony czas � czesto siodmy na 2 tygodnie.
  7. Pigulka wzmacniajaca limity bonusu: Czy czy nie dokonasz wiekszego depozytu, obowiazuje maksymalna warty bonusu, jak. niezliczona ilosc zl lub po prostu dwiescie zl � zgodnie z promocji.

Dodatkowe oferty na VOX Casino

Motywacja powitalny oni pakiet z piec 000 zl oraz 300 darmowych spinow w nowych uzytkownikow. Szczyt bonusu zalezy od wplaty � 60�99 zl ma jedno C% doplaty i bedziesz piecdziesiat spinow, dobry sto zl lub wiecej wlacza 125% i niezliczona ilosc darmowych obrotow. Spiny przyznawane przyszli dwoch turach: piecdziesiat dolarow natychmiast i bedziesz piecdziesiat po 24 godzinach. Koniecznosc obrotu wynosi x30.

Motywacja Magiczny technologia informacyjna umowa jedno C% dopasowania, ktora nalezy aktywowac przed wplata. Wymagana minimalna wplata technologia informacyjna zaledwie 8 zl. Nastepowaniu spelnieniu warunkow, kroki trafiaja natychmiast na saldo bonusowe i podlegaja obrotowi x20.

Motywacja Progresywny inspiruj z dalszej wpadka � nastepujace zrzuty mogli angazowac ale ladniejsze oferty. Przykladowo, dodatkowy trzymac przyniesie jedno C% do jednego 750 zl oraz sto spinow. Takie jak da ci byli w stanie udowodnic a takze w trzecim i mozesz czwartym doladowaniu konta.

Wniosek

VOX Casino zwykle tworzy swoja moge zapewniac promocyjna, upewniajac sie graczom dostepnosc do atrakcyjnych kodow bonusowych, i to wzbogacaja rozgrywke i bedziesz zwiekszaja szanse na wygrana. Z powodu czytelnej strukturze promocji, przejrzystym zasadom i bedziesz szerokiej srodkow dostepu kodow � zarowno tych bez depozytu, jak i bedziesz dopasowanych na wplat � wszyscy znajdzie jedna rzecz na wlasna reke. Czy czy nie, czy niedawno zaczynasz, czy jestes doswiadczonym graczem, VOX Casino slowo bonusowy technologia informacyjna dobry sposob na o wiele wiecej emocji i bedziesz ladniejsze korzysci.

Witryna internetowa obslugiwana z spolke Uniarise Limited, zarejestrowana na Cyprze, cel siedziby glownej: ?gias Zonis, 25, Nicolau Pentadromos Center, nieruchomosci 165, Limassol, Cypr, 3027; nr rejestracyjny: HE 387935. Strona internetowa voxcasino nalezy do organizacje Udwin B.Wirtualny asystent. (nr licencji: 8048/JAZ2023-044), adres: Korporaalweg x, Willemstad, Curacao, lista kontrolna rejestracyjny: 147117, bedacej spolka partnerska Uniarise Limited. Adres na wschod-mail wsparcia klienta: [email protected], cel tokoferol-mail DPO: [email protected].

Discussion

Back To Top
Search