mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
$.clientSideLogging({
|
|
log_level: 3,
|
|
client_info: {
|
|
location:true,
|
|
screen_size:true,
|
|
user_agent:true,
|
|
window_size:false
|
|
}
|
|
});
|
|
|
|
$.info({msg:$(this).parents('li').find('input:text').val()});
|
|
$.error({msg:$(this).parents('li').find('input:text').val()});
|
|
$.log($(this).parents('li').find('input:text').val());
|
|
|
|
$.post('/log?type=error&msg=YOUR_ERROR_MESSAGE');
|