Tarea #997 -> Indicadores rojos en las pestañas git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@118 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
20 lines
429 B
JavaScript
20 lines
429 B
JavaScript
jQuery(document).ready( function($) {
|
|
|
|
var time = parseInt(mark_as_read_auto_js.time) * 1000;
|
|
if(time == '') {
|
|
time = 10000; // default to 10 seconds
|
|
}
|
|
|
|
setTimeout( function() {
|
|
|
|
var data = {
|
|
action: 'mark_post_as_read',
|
|
post_read: mark_as_read_auto_js.post_id
|
|
};
|
|
$.post(mark_as_read_auto_js.ajaxurl, data, function(response) {
|
|
// post has been marked as read
|
|
});
|
|
|
|
}, time );
|
|
|
|
}); |