123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- define([
- 'jquery',
- 'jquery/ui'
- ], function ($) {
- 'use strict';
- $.widget('mage.checkoutBalance', {
- /**
- * Initialize store credit events
- * @private
- */
- _create: function () {
- this.eventData = {
- price: this.options.balance,
- totalPrice: 0
- };
- this.element.on('change', $.proxy(function (e) {
- if ($(e.target).is(':checked')) {
- this.eventData.price = -1 * this.options.balance;
- } else {
- if (this.options.amountSubstracted) { //eslint-disable-line no-lonely-if
- this.eventData.price = parseFloat(this.options.usedAmount);
- this.options.amountSubstracted = false;
- } else {
- this.eventData.price = parseFloat(this.options.balance);
- }
- }
- this.element.trigger('updateCheckoutPrice', this.eventData);
- }, this));
- }
- });
- return $.mage.checkoutBalance;
- });
|