Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions digits/templates/job_management.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,6 @@
}
}

// update ago every 5 seconds
var update_ago_timer = $.timer(update_ago, 1000);
function update_ago() {
return;
$("small#ago" ).each(function(){
var start = $(this).attr('start')
var now = $.now() / 1000;
var time = print_time_diff(now - start);
$(this).html( "(" + time + " ago)" );
});
}

$(document).ready(function() {
// Make the jobs DataTable
// make 'table' a global variable
Expand Down