Removed comments on js file

This commit is contained in:
h3ct0r 2016-03-10 15:47:22 -03:00
parent 2eb63a21d1
commit d6c4e4cf75

View file

@ -935,33 +935,6 @@ var BackendCalendar = {
'key': key
};
// $.post(postUrl, postData, function(response) {
// ///////////////////////////////////////////////////////
// console.log('Filter Customers Response:', response);
// ///////////////////////////////////////////////////////
// if (!GeneralFunctions.handleAjaxExceptions(response)) return;
// BackendCustomers.helper.filterResults = response;
// $('#filter-customers .results').data('jsp').destroy();
// $('#filter-customers .results').html('');
// $.each(response, function(index, customer) {
// var html = BackendCustomers.helper.getFilterHtml(customer);
// $('#filter-customers .results').append(html);
// });
// $('#filter-customers .results').jScrollPane({ mouseWheelSpeed: 70 });
// if (response.length == 0) {
// $('#filter-customers .results').html('<em>' + EALang['no_records_found'] + '</em>');
// }
// if (selectId != undefined) {
// BackendCustomers.helper.select(selectId, display);
// }
// }, 'json').fail(GeneralFunctions.ajaxFailureHandler);
// Try to get the updated customer list
$.ajax({
'type': 'POST',