| Current Path : /home/rtorresani/www/vendor/magento/module-sales/view/frontend/web/js/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/view/frontend/web/js/orders-returns.js |
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
define([
'jquery',
'jquery-ui-modules/widget'
], function ($) {
'use strict';
$.widget('mage.ordersReturns', {
options: {
zipCode: '#oar-zip', // Search by zip code.
emailAddress: '#oar-email', // Search by email address.
searchType: '#quick-search-type-id' // Search element used for choosing between the two.
},
/** @inheritdoc */
_create: function () {
$(this.options.searchType).on('change', $.proxy(this._showIdentifyBlock, this)).trigger('change');
},
/**
* Show either the search by zip code option or the search by email address option.
* @private
* @param {jQuery.Event} e - Change event. Event target value is either 'zip' or 'email'.
*/
_showIdentifyBlock: function (e) {
var value = $(e.target).val();
$(this.options.zipCode).toggle(value === 'zip');
$(this.options.emailAddress).toggle(value === 'email');
}
});
return $.mage.ordersReturns;
});