Module: ajaxAPI/compare

Ajax-обертки для работы со сравнением

Methods


<static> add(id)

Добавление товара в сравнение
Parameters:
Name Type Description
id number id товара, добавляемого в сравнение
Returns:
Type
$.ajax
Example
ajaxAPI.compare.add(123456)
 .done(function (onDone) { console.log('onDone: ', onDone) })
 .fail(function (onFail) { console.log('onFail: ', onFail) });

<static> get()

Получение списка сравнения
Returns:
Type
$.ajax
Example
ajaxAPI.compare.get()
 .done(function (onDone) { console.log('onDone: ', onDone) })
 .fail(function (onFail) { console.log('onFail: ', onFail) });

<static> remove(id)

Удаление товара из сравнения
Parameters:
Name Type Description
id number id товара, удаляемого из списка.
Returns:
Type
$.ajax
Example
ajaxAPI.compare.remove(123456)
 .done(function (onDone) { console.log('onDone: ', onDone) })
 .fail(function (onFail) { console.log('onFail: ', onFail) });