added plumbing for viewer to have a joblog search for the current file

This commit is contained in:
2022-02-05 23:23:10 +11:00
parent 10cbee450f
commit 83eff02910
3 changed files with 48 additions and 2 deletions

View File

@@ -75,6 +75,16 @@
return s
}
function JoblogSearch()
{
data="eid="+current
$.ajax({ type: 'POST', data: data, url: '/joblog_search', success: function(res) {
data = JSON.parse(res)
console.log(data)
}
})
}
function CallViewListRoute(dir)
{
data="eids="+$("#eids").val()