authFormNodes.push(this.createAuthFormInputContainer(
BX.message('STOF_EMAIL'),
BX.create('INPUT', {
attrs: {'data-next': 'PHONE_NUMBER'},
props: {
name: 'NEW_EMAIL',
type: 'text',
size: 40,
value: this.result.AUTH.NEW_EMAIL || ''
},
events: {keypress: BX.proxy(this.checkKeyPress, this)}
}),
this.result.AUTH.new_user_email_required == 'Y'
));
if (this.isBasketIntegrated() && this.isBasketChanged())
{
BX.Sale.OrderAjaxComponent.sendRequest();
}
isBasketIntegrated: function()
{
return this.params.BASKET_WITH_ORDER_INTEGRATION === 'Y';
},