Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/handlers/paysystem/bepaid/template/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sale/handlers/paysystem/bepaid/template/widget.js

/**
 * Class BX.Sale.BePaid
 */
(function() {
	'use strict';

	if (!BX.Sale)
		BX.Sale = {};

	if (BX.Sale.BePaid)
		return;

	BX.Sale.BePaid = {
		init: function(params)
		{
			this.params = params.params;
			this.buttonPayNode = BX(params.buttonPayId);
			this.bindEvents();
		},

		bindEvents: function()
		{
			BX.bind(this.buttonPayNode, 'click', BX.proxy(this.createWidget, this));
		},

		createWidget: function()
		{
			new BeGateway(this.params).createWidget();
		},
	}
})();