Removed auto refresh. It polls too frequently and potential fills web server logs too quickly.

This commit is contained in:
chouseknecht
2013-10-17 17:57:50 +00:00
parent 94bb0701fc
commit 1068e190cb
9 changed files with 40 additions and 15 deletions

View File

@@ -300,9 +300,13 @@ angular.module('JobFormDefinition', [])
statusActions: {
refresh: {
awRefresh: true,
ngShow: "(status == 'pending' || status == 'waiting' || status == 'running')",
mode: 'all'
dataPlacement: 'top',
icon: "icon-refresh",
mode: 'all',
ngShow: "job_status == 'pending' || job_status == 'waiting' || job_status == 'running'",
'class': 'btn-xs btn-primary',
awToolTip: "Refresh the page",
ngClick: "refresh()"
}
}