[WIP] Add thumb on offers, refactor categories, try to fix counter on relations polymorphic with eage loader, bad pattern !

This commit is contained in:
Ludovic CANDELLIER
2021-12-17 00:30:07 +01:00
parent 2be07ce72c
commit a3c6fc6ebe
26 changed files with 171 additions and 107 deletions

View File

@@ -12,7 +12,8 @@
$('input' + selector).change(function() {
data['id'] = $(this).data('id');
data['active'] = $(this).is(':checked');
var name = (typeof($(this).data('name')) == 'undefined') ? 'active' : $(this).data('name');
data[name] = $(this).is(':checked');
if (data['id'] && (typeof(url) != 'undefined') && (url != '')) {
var dataJson = Object.assign({}, data);
$.post(url, dataJson);