/* Class autolad */
CV_Intervals.CV_Tables = setInterval(function() {
	if (typeof CV == 'undefined') return;
	
	CV.Tables = {};
	clearInterval(CV_Intervals.CV_Tables);

	/* Load functionalities here */

	CV.Tables.refreshTable = function(tableDom) {
		tableDom = jQuery(tableDom);
		tableDom.find('table').data('datatable-instance').DataTable.ajax.reload(function() {
			tableDom.find('table').data('datatable-instance').DataTable.responsive.recalc();
		});
	}
}, 100);