tf-checkout-react 1.0.67 → 1.0.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/confirmationContainer/index.d.ts +5 -11
- package/dist/components/confirmationContainer/social-buttons.d.ts +11 -0
- package/dist/components/loginModal/index.d.ts +1 -0
- package/dist/env.d.ts +2 -2
- package/dist/tf-checkout-react.cjs.development.js +169 -75
- package/dist/tf-checkout-react.cjs.development.js.map +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
- package/dist/tf-checkout-react.esm.js +169 -75
- package/dist/tf-checkout-react.esm.js.map +1 -1
- package/dist/tf-checkout-styles.css +1 -1
- package/dist/types/referral-promotion.d.ts +1 -1
- package/package.json +8 -4
- package/src/components/billing-info-container/index.tsx +3 -3
- package/src/components/confirmationContainer/index.tsx +107 -138
- package/src/components/confirmationContainer/social-buttons.tsx +116 -0
- package/src/components/confirmationContainer/style.css +87 -100
- package/src/components/loginModal/index.tsx +8 -1
- package/src/env.ts +4 -4
- package/src/types/referral-promotion.ts +1 -1
|
@@ -26,6 +26,7 @@ import { useStripe, useElements, CardNumberElement, CardExpiryElement, CardCvcEl
|
|
|
26
26
|
import { loadStripe } from '@stripe/stripe-js';
|
|
27
27
|
import CircularProgress$1 from '@mui/material/CircularProgress';
|
|
28
28
|
import SVG from 'react-inlinesvg';
|
|
29
|
+
import { FacebookShareButton, FacebookIcon, TwitterShareButton, TwitterIcon, FacebookMessengerShareButton, FacebookMessengerIcon, WhatsappShareButton, WhatsappIcon } from 'react-share';
|
|
29
30
|
import _some from 'lodash-es/some';
|
|
30
31
|
import _find from 'lodash-es/find';
|
|
31
32
|
import _isEmpty from 'lodash-es/isEmpty';
|
|
@@ -917,15 +918,14 @@ var emailValidator = function emailValidator(email) {
|
|
|
917
918
|
return !emailRegex.test(email) ? 'Please enter a valid email address' : '';
|
|
918
919
|
};
|
|
919
920
|
|
|
920
|
-
//
|
|
921
|
-
|
|
921
|
+
// preview
|
|
922
922
|
var ENV = {
|
|
923
|
-
EVENT_ID:
|
|
924
|
-
BASE_URL: 'https://
|
|
925
|
-
CLIENT_ID: '
|
|
923
|
+
EVENT_ID: 3483,
|
|
924
|
+
BASE_URL: 'https://preview.ttf.fluxtech.me/api',
|
|
925
|
+
CLIENT_ID: '4792a61f2fcb49197ab4c2d2f44df570',
|
|
926
926
|
CLIENT_SECRET: 'b89c191eff22fdcf84ac9bfd88d005355a151ec2c83b26b9',
|
|
927
|
-
STRIPE_PUBLISHABLE_KEY: '
|
|
928
|
-
};
|
|
927
|
+
STRIPE_PUBLISHABLE_KEY: 'pk_test_51H4BkOGqveRD6EShliLrT9vd7mPOBPvQSuqmvc3wIinDqxWsCLeS2N7HonPPn6MhjU35ayYy5v4I6MLlD4jNWrd000NSgAF6UL'
|
|
928
|
+
}; // prod
|
|
929
929
|
|
|
930
930
|
var isWindowDefined = typeof window !== 'undefined';
|
|
931
931
|
var allowedOrigins = ['http://localhost', 'gtsb.io', 'gatsbyjs.io', 'https://www.houseofx.nyc', 'https://tickets-staging.houseofx.nyc'];
|
|
@@ -1142,7 +1142,9 @@ var LoginModal = function LoginModal(_ref) {
|
|
|
1142
1142
|
_ref$onGetProfileData = _ref.onGetProfileDataSuccess,
|
|
1143
1143
|
onGetProfileDataSuccess = _ref$onGetProfileData === void 0 ? function () {} : _ref$onGetProfileData,
|
|
1144
1144
|
_ref$onGetProfileData2 = _ref.onGetProfileDataError,
|
|
1145
|
-
onGetProfileDataError = _ref$onGetProfileData2 === void 0 ? function () {} : _ref$onGetProfileData2
|
|
1145
|
+
onGetProfileDataError = _ref$onGetProfileData2 === void 0 ? function () {} : _ref$onGetProfileData2,
|
|
1146
|
+
_ref$modalClassname = _ref.modalClassname,
|
|
1147
|
+
modalClassname = _ref$modalClassname === void 0 ? '' : _ref$modalClassname;
|
|
1146
1148
|
|
|
1147
1149
|
var _useState = useState(''),
|
|
1148
1150
|
error = _useState[0],
|
|
@@ -1152,7 +1154,8 @@ var LoginModal = function LoginModal(_ref) {
|
|
|
1152
1154
|
open: true,
|
|
1153
1155
|
onClose: onClose,
|
|
1154
1156
|
"aria-labelledby": "modal-modal-title",
|
|
1155
|
-
"aria-describedby": "modal-modal-description"
|
|
1157
|
+
"aria-describedby": "modal-modal-description",
|
|
1158
|
+
className: "login-modal " + modalClassname
|
|
1156
1159
|
}, React.createElement(Box, {
|
|
1157
1160
|
style: style
|
|
1158
1161
|
}, React.createElement("div", null, React.createElement(Formik, {
|
|
@@ -1986,7 +1989,7 @@ var LogicRunner = function LogicRunner(_ref) {
|
|
|
1986
1989
|
useEffect(function () {
|
|
1987
1990
|
var fetchStates = /*#__PURE__*/function () {
|
|
1988
1991
|
var _ref2 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee() {
|
|
1989
|
-
var _mappedStates$0$
|
|
1992
|
+
var _mappedStates$0$value, _mappedStates$, res, mappedStates;
|
|
1990
1993
|
|
|
1991
1994
|
return runtime_1.wrap(function _callee$(_context) {
|
|
1992
1995
|
while (1) {
|
|
@@ -1998,14 +2001,14 @@ var LogicRunner = function LogicRunner(_ref) {
|
|
|
1998
2001
|
|
|
1999
2002
|
case 3:
|
|
2000
2003
|
res = _context.sent;
|
|
2001
|
-
mappedStates = _map(_get(res, 'data.data'), function (item) {
|
|
2004
|
+
mappedStates = _map(_get(res, 'data.data'), function (item, key) {
|
|
2002
2005
|
return {
|
|
2003
2006
|
label: item,
|
|
2004
|
-
value:
|
|
2007
|
+
value: key
|
|
2005
2008
|
};
|
|
2006
2009
|
});
|
|
2007
2010
|
setStates(mappedStates);
|
|
2008
|
-
setFieldValue('state', (_mappedStates$0$
|
|
2011
|
+
setFieldValue('state', (_mappedStates$0$value = (_mappedStates$ = mappedStates[0]) == null ? void 0 : _mappedStates$.value) != null ? _mappedStates$0$value : '');
|
|
2009
2012
|
onGetStatesSuccess(res.data);
|
|
2010
2013
|
_context.next = 13;
|
|
2011
2014
|
break;
|
|
@@ -3221,31 +3224,108 @@ var PaymentContainer = function PaymentContainer(_ref) {
|
|
|
3221
3224
|
})))))));
|
|
3222
3225
|
};
|
|
3223
3226
|
|
|
3224
|
-
var
|
|
3227
|
+
var SocialButtons = function SocialButtons(_ref) {
|
|
3228
|
+
var showDefaultShareButtons = _ref.showDefaultShareButtons,
|
|
3229
|
+
shareLink = _ref.shareLink,
|
|
3230
|
+
name = _ref.name,
|
|
3231
|
+
appId = _ref.appId,
|
|
3232
|
+
shareButtons = _ref.shareButtons;
|
|
3233
|
+
return React.createElement(React.Fragment, null, React.createElement("div", {
|
|
3234
|
+
className: "convenient_buttons"
|
|
3235
|
+
}, "or use one of these convenient buttons:"), React.createElement("div", {
|
|
3236
|
+
className: "social-media-btns"
|
|
3237
|
+
}, showDefaultShareButtons && React.createElement(React.Fragment, null, React.createElement(FacebookShareButton, {
|
|
3238
|
+
url: shareLink,
|
|
3239
|
+
quote: name
|
|
3240
|
+
}, React.createElement("div", {
|
|
3241
|
+
className: 'social-media-sharing'
|
|
3242
|
+
}, React.createElement("div", {
|
|
3243
|
+
className: 'share-icon'
|
|
3244
|
+
}, React.createElement(FacebookIcon, {
|
|
3245
|
+
size: 32,
|
|
3246
|
+
round: true
|
|
3247
|
+
})), React.createElement("span", {
|
|
3248
|
+
className: "share-text"
|
|
3249
|
+
}, "Share on", React.createElement("br", null), " Facebook"))), React.createElement(TwitterShareButton, {
|
|
3250
|
+
url: shareLink,
|
|
3251
|
+
title: name
|
|
3252
|
+
}, React.createElement("div", {
|
|
3253
|
+
className: 'social-media-sharing'
|
|
3254
|
+
}, React.createElement("div", {
|
|
3255
|
+
className: 'share-icon'
|
|
3256
|
+
}, React.createElement(TwitterIcon, {
|
|
3257
|
+
size: 32,
|
|
3258
|
+
round: true
|
|
3259
|
+
})), React.createElement("span", {
|
|
3260
|
+
className: "share-text"
|
|
3261
|
+
}, "Tweet to your", React.createElement("br", null), " Followers"))), React.createElement(FacebookMessengerShareButton, {
|
|
3262
|
+
url: shareLink,
|
|
3263
|
+
appId: appId
|
|
3264
|
+
}, React.createElement("div", {
|
|
3265
|
+
className: 'social-media-sharing'
|
|
3266
|
+
}, React.createElement("div", {
|
|
3267
|
+
className: 'share-icon'
|
|
3268
|
+
}, React.createElement(FacebookMessengerIcon, {
|
|
3269
|
+
size: 32,
|
|
3270
|
+
round: true
|
|
3271
|
+
})), React.createElement("span", {
|
|
3272
|
+
className: "share-text"
|
|
3273
|
+
}, "Message friends on", React.createElement("br", null), " Facebook"))), React.createElement(WhatsappShareButton, {
|
|
3274
|
+
url: shareLink,
|
|
3275
|
+
title: name
|
|
3276
|
+
}, React.createElement("div", {
|
|
3277
|
+
className: 'social-media-sharing'
|
|
3278
|
+
}, React.createElement("div", {
|
|
3279
|
+
className: 'share-icon'
|
|
3280
|
+
}, React.createElement(WhatsappIcon, {
|
|
3281
|
+
size: 32,
|
|
3282
|
+
round: true
|
|
3283
|
+
})), React.createElement("span", {
|
|
3284
|
+
className: "share-text"
|
|
3285
|
+
}, "Message friends on", React.createElement("br", null), " Whatsapp")))), shareButtons.map(function (shareButton, index) {
|
|
3286
|
+
return React.createElement("div", {
|
|
3287
|
+
className: 'sharing-btn',
|
|
3288
|
+
key: index
|
|
3289
|
+
}, React.createElement("a", {
|
|
3290
|
+
href: shareButton.link,
|
|
3291
|
+
target: "_blank",
|
|
3292
|
+
rel: "noopener noreferrer"
|
|
3293
|
+
}, React.createElement("div", {
|
|
3294
|
+
className: 'social-media-sharing'
|
|
3295
|
+
}, React.createElement("div", {
|
|
3296
|
+
className: 'share-icon'
|
|
3297
|
+
}, React.createElement(SVG, {
|
|
3298
|
+
width: '32px',
|
|
3299
|
+
height: '32px',
|
|
3300
|
+
fill: '#FFF',
|
|
3301
|
+
src: getImage(shareButton.icon)
|
|
3302
|
+
})), React.createElement("span", {
|
|
3303
|
+
className: "share-text"
|
|
3304
|
+
}, shareButton.mainLabel, React.createElement("br", null), " ", shareButton.subLabel))));
|
|
3305
|
+
})));
|
|
3306
|
+
};
|
|
3307
|
+
|
|
3225
3308
|
var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
3226
3309
|
var isReferralEnabled = _ref.isReferralEnabled,
|
|
3227
|
-
|
|
3228
|
-
|
|
3310
|
+
showDefaultShareButtons = _ref.showDefaultShareButtons,
|
|
3311
|
+
_ref$messengerAppId = _ref.messengerAppId,
|
|
3312
|
+
messengerAppId = _ref$messengerAppId === void 0 ? '' : _ref$messengerAppId,
|
|
3229
3313
|
_ref$shareButtons = _ref.shareButtons,
|
|
3230
3314
|
shareButtons = _ref$shareButtons === void 0 ? [] : _ref$shareButtons,
|
|
3231
|
-
_ref$shareLink = _ref.shareLink,
|
|
3232
|
-
shareLink = _ref$shareLink === void 0 ? '' : _ref$shareLink,
|
|
3233
3315
|
_ref$onGetConfirmatio = _ref.onGetConfirmationDataSuccess,
|
|
3234
3316
|
onGetConfirmationDataSuccess = _ref$onGetConfirmatio === void 0 ? function () {} : _ref$onGetConfirmatio,
|
|
3235
3317
|
_ref$onGetConfirmatio2 = _ref.onGetConfirmationDataError,
|
|
3236
3318
|
onGetConfirmationDataError = _ref$onGetConfirmatio2 === void 0 ? function () {} : _ref$onGetConfirmatio2;
|
|
3237
3319
|
var inputRef = useRef(null);
|
|
3238
3320
|
|
|
3239
|
-
var _useState = useState(
|
|
3321
|
+
var _useState = useState(null),
|
|
3240
3322
|
data = _useState[0],
|
|
3241
|
-
setData = _useState[1];
|
|
3323
|
+
setData = _useState[1]; // 1. get payment complete data ---> v1/order/${orderHash}/payment/complete/
|
|
3242
3324
|
|
|
3243
|
-
var showShareButtons = Boolean(shareButtons.length);
|
|
3244
|
-
var showReferralPromotions = Boolean(referralPromotions.length); // 1. get payment complete data ---> v1/order/${orderHash}/payment/complete/
|
|
3245
3325
|
|
|
3246
3326
|
useEffect(function () {
|
|
3247
3327
|
_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee() {
|
|
3248
|
-
var dataEncoded, dataDecoded, hash, response, _data;
|
|
3328
|
+
var dataEncoded, dataDecoded, hash, _data$product_price, response, _data;
|
|
3249
3329
|
|
|
3250
3330
|
return runtime_1.wrap(function _callee$(_context) {
|
|
3251
3331
|
while (1) {
|
|
@@ -3254,7 +3334,7 @@ var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
|
3254
3334
|
dataEncoded = typeof window !== 'undefined' && window.localStorage.getItem('checkoutData');
|
|
3255
3335
|
|
|
3256
3336
|
if (!dataEncoded) {
|
|
3257
|
-
_context.next =
|
|
3337
|
+
_context.next = 18;
|
|
3258
3338
|
break;
|
|
3259
3339
|
}
|
|
3260
3340
|
|
|
@@ -3267,27 +3347,60 @@ var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
|
3267
3347
|
case 7:
|
|
3268
3348
|
response = _context.sent;
|
|
3269
3349
|
_data = _get(response, 'data.data.attributes');
|
|
3350
|
+
_data.personal_share_sales = _data.personal_share_sales.map(function (d) {
|
|
3351
|
+
var salesData = {
|
|
3352
|
+
label: "If your friends buy " + d.sales + " tickets",
|
|
3353
|
+
price: ''
|
|
3354
|
+
};
|
|
3355
|
+
|
|
3356
|
+
if (d.price === 0) {
|
|
3357
|
+
salesData.subLabel = 'Your ticket becomes';
|
|
3358
|
+
salesData.price = 'FREE!';
|
|
3359
|
+
} else {
|
|
3360
|
+
var _d$price;
|
|
3361
|
+
|
|
3362
|
+
salesData.subLabel = 'Your ticket goes down to';
|
|
3363
|
+
salesData.price = _data.currency.symbol + ((_d$price = d.price) == null ? void 0 : _d$price.toFixed(2));
|
|
3364
|
+
}
|
|
3365
|
+
|
|
3366
|
+
return salesData;
|
|
3367
|
+
});
|
|
3368
|
+
|
|
3369
|
+
_data.personal_share_sales.unshift({
|
|
3370
|
+
label: 'Your ticket is currently',
|
|
3371
|
+
price: _data.currency.symbol + ((_data$product_price = _data.product_price) == null ? void 0 : _data$product_price.toFixed(2))
|
|
3372
|
+
});
|
|
3373
|
+
|
|
3270
3374
|
setData(_data);
|
|
3271
3375
|
onGetConfirmationDataSuccess(response.data);
|
|
3272
|
-
_context.next =
|
|
3376
|
+
_context.next = 18;
|
|
3273
3377
|
break;
|
|
3274
3378
|
|
|
3275
|
-
case
|
|
3276
|
-
_context.prev =
|
|
3379
|
+
case 15:
|
|
3380
|
+
_context.prev = 15;
|
|
3277
3381
|
_context.t0 = _context["catch"](4);
|
|
3278
3382
|
onGetConfirmationDataError(_context.t0.response);
|
|
3279
3383
|
|
|
3280
|
-
case
|
|
3384
|
+
case 18:
|
|
3281
3385
|
case "end":
|
|
3282
3386
|
return _context.stop();
|
|
3283
3387
|
}
|
|
3284
3388
|
}
|
|
3285
|
-
}, _callee, null, [[4,
|
|
3389
|
+
}, _callee, null, [[4, 15]]);
|
|
3286
3390
|
}))();
|
|
3287
3391
|
}, []);
|
|
3392
|
+
|
|
3393
|
+
var onChangeShareLink = function onChangeShareLink(e) {
|
|
3394
|
+
var newData = _extends({}, data, {
|
|
3395
|
+
personal_share_link: e.target.value
|
|
3396
|
+
});
|
|
3397
|
+
|
|
3398
|
+
setData(newData);
|
|
3399
|
+
};
|
|
3400
|
+
|
|
3288
3401
|
return React.createElement("div", {
|
|
3289
3402
|
className: "confirmation-page"
|
|
3290
|
-
}, React.createElement("p", {
|
|
3403
|
+
}, data && React.createElement(React.Fragment, null, React.createElement("p", {
|
|
3291
3404
|
className: "title"
|
|
3292
3405
|
}, "Your Tickets are Confirmed!"), React.createElement("div", {
|
|
3293
3406
|
className: "share-message-section"
|
|
@@ -3312,7 +3425,7 @@ var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
|
3312
3425
|
}, " Invite friends "), "and we'll refund up to", React.createElement("span", {
|
|
3313
3426
|
className: "strong-text"
|
|
3314
3427
|
}, " 100% "), "of your ticket money, if they buy tickets as well!")), React.createElement("img", {
|
|
3315
|
-
src:
|
|
3428
|
+
src: data.product_image,
|
|
3316
3429
|
alt: "No Data"
|
|
3317
3430
|
})), React.createElement("div", {
|
|
3318
3431
|
className: "share_wrapper"
|
|
@@ -3325,65 +3438,46 @@ var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
|
3325
3438
|
}, "How do you invite your friends?"), React.createElement("div", {
|
|
3326
3439
|
className: "share_buttons"
|
|
3327
3440
|
}, React.createElement("div", {
|
|
3328
|
-
className: "
|
|
3441
|
+
className: "share-by-link"
|
|
3329
3442
|
}, React.createElement("h5", {
|
|
3330
|
-
className: "
|
|
3443
|
+
className: "share-by-link label"
|
|
3331
3444
|
}, "Send them this link:"), React.createElement("div", {
|
|
3332
|
-
"
|
|
3333
|
-
className: "share-btn-inner share-by-link-copy",
|
|
3334
|
-
onClick: function onClick() {
|
|
3335
|
-
return navigator.clipboard.writeText(_get(inputRef, 'current.value'));
|
|
3336
|
-
}
|
|
3445
|
+
className: "share-btn-inner"
|
|
3337
3446
|
}, React.createElement("input", {
|
|
3338
3447
|
ref: inputRef,
|
|
3339
3448
|
className: "share-input",
|
|
3340
|
-
value:
|
|
3341
|
-
|
|
3449
|
+
value: data.personal_share_link,
|
|
3450
|
+
onChange: onChangeShareLink
|
|
3342
3451
|
}), React.createElement("div", {
|
|
3343
|
-
className:
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
})))),
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
}, React.createElement("div", {
|
|
3358
|
-
"aria-hidden": true,
|
|
3359
|
-
className: "share-btn-inner " + shareButtonItem.containerInnerClassName,
|
|
3360
|
-
onClick: function onClick() {}
|
|
3361
|
-
}, React.createElement(SVG, {
|
|
3362
|
-
className: shareButtonItem.svgClassName || 'share-icon',
|
|
3363
|
-
width: shareButtonItem.svgWidth || '40px',
|
|
3364
|
-
height: shareButtonItem.svgHeight || '40px',
|
|
3365
|
-
fill: shareButtonItem.svgFill || '#FFF',
|
|
3366
|
-
src: shareButtonItem.svgSrc || defaultSvg
|
|
3367
|
-
}), React.createElement("span", {
|
|
3368
|
-
className: "share-text"
|
|
3369
|
-
}, shareButtonItem.mainLabel, React.createElement("br", null), " ", shareButtonItem.subLabel)));
|
|
3370
|
-
})))))), showReferralPromotions && React.createElement("div", {
|
|
3452
|
+
className: 'share-by-link-copy-icon',
|
|
3453
|
+
onClick: function onClick() {
|
|
3454
|
+
return navigator.clipboard.writeText(_get(inputRef, 'current.value'));
|
|
3455
|
+
}
|
|
3456
|
+
}, React.createElement("img", {
|
|
3457
|
+
src: "https://img.icons8.com/office/50/000000/copy.png",
|
|
3458
|
+
alt: 'copy'
|
|
3459
|
+
})))), (showDefaultShareButtons || !!shareButtons.length) && React.createElement(SocialButtons, {
|
|
3460
|
+
showDefaultShareButtons: showDefaultShareButtons,
|
|
3461
|
+
name: data.product_name,
|
|
3462
|
+
appId: messengerAppId,
|
|
3463
|
+
shareLink: data.personal_share_link,
|
|
3464
|
+
shareButtons: shareButtons
|
|
3465
|
+
})))), React.createElement("div", {
|
|
3371
3466
|
className: "pricing-section"
|
|
3372
3467
|
}, React.createElement("div", {
|
|
3373
3468
|
className: "invitation_title"
|
|
3374
|
-
}, "How much cheaper?"), _map(
|
|
3375
|
-
var isFree = pricing.price === 'FREE';
|
|
3469
|
+
}, "How much cheaper?"), _map(data.personal_share_sales, function (pricing, index) {
|
|
3376
3470
|
return React.createElement("div", {
|
|
3377
|
-
key:
|
|
3378
|
-
className:
|
|
3471
|
+
key: index,
|
|
3472
|
+
className: 'pricing-section_wrapper'
|
|
3379
3473
|
}, React.createElement("div", {
|
|
3380
3474
|
className: "pricing-section_label"
|
|
3381
|
-
}, pricing.label
|
|
3475
|
+
}, pricing.label, pricing.subLabel && React.createElement("div", {
|
|
3382
3476
|
className: "pricing-section_sublabel"
|
|
3383
|
-
}, pricing.subLabel
|
|
3477
|
+
}, pricing.subLabel)), React.createElement("div", {
|
|
3384
3478
|
className: "pricing-section_price"
|
|
3385
3479
|
}, ' ', pricing.price));
|
|
3386
|
-
})))));
|
|
3480
|
+
}))))));
|
|
3387
3481
|
};
|
|
3388
3482
|
|
|
3389
3483
|
var getTicketSelectOptions = function getTicketSelectOptions(maxCount, minCount, multiplier) {
|