bug fixes on activity log and array_key_first alt using reset

This commit is contained in:
Kwesi Banson
2024-02-16 19:46:38 +00:00
parent d4ab479e0c
commit 7b3a29ca53
25 changed files with 579 additions and 160 deletions

25
public/assets/js/financedashboard.js vendored Normal file
View File

@@ -0,0 +1,25 @@
$(document).ready(function(){
/*
$.ajax({
type: "get",
url: base_url + '/dashboard/get_events',
// data : formData,
processData: false,
contentType: false,
async: false,
success: function (data){
//init_calendar(data);
},
error: function(error){
var output = $.parseJSON(error.responseText);
console.log(output.errors);
$('#ipNotifyArea').removeClass('hidden');
$('#ipNotifyArea').addClass('alert alert-danger');
$.each(output.errors, function (key, value) {
//console.log(value[0]);
$('#ipNotifyArea').text(value[0]);
});
}
});
*/
});