![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/pub/static/frontend/Magento/luma/en_US/Magento_Captcha/js/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'jquery', 'jquery-ui-modules/widget' ], function ($) { 'use strict'; /** * @api */ $.widget('mage.captcha', { options: { refreshClass: 'refreshing', reloadSelector: '.captcha-reload', imageSelector: '.captcha-img', imageLoader: '' }, /** * Method binds click event to reload image * @private */ _create: function () { this.element.on('click', this.options.reloadSelector, $.proxy(this.refresh, this)); }, /** * Method triggers an AJAX request to refresh the CAPTCHA image */ refresh: function () { var imageLoader = this.options.imageLoader; if (imageLoader) { this.element.find(this.options.imageSelector).attr('src', imageLoader); } this.element.addClass(this.options.refreshClass); $.ajax({ url: this.options.url, type: 'post', dataType: 'json', context: this, data: { 'formId': this.options.type }, /** * @param {Object} response */ success: function (response) { if (response.imgSrc) { this.element.find(this.options.imageSelector).attr('src', response.imgSrc); } }, /** Complete callback. */ complete: function () { this.element.removeClass(this.options.refreshClass); } }); } }); return $.mage.captcha; });