![]() 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/lib/web/mage/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'jquery', 'jquery-ui-modules/widget' ], function ($) { 'use strict'; $.widget('mage.redirectUrl', { options: { event: 'click', url: undefined }, /** * This method binds elements found in this widget. * @private */ _bind: function () { var handlers = {}; handlers[this.options.event] = '_onEvent'; this._on(handlers); }, /** * This method constructs a new widget. * @private */ _create: function () { this._bind(); }, /** * This method set the url for the redirect. * @private */ _onEvent: function () { if (this.options.url) { location.href = this.options.url; } else { location.href = this.element.val(); } } }); return $.mage.redirectUrl; });