Fixed login dialog so that it now submits when Enter pressed in password field. Fixed more button more button labels.

This commit is contained in:
chouseknecht
2013-05-24 09:55:52 -04:00
parent b4709c5138
commit fd25d68ffe
16 changed files with 41 additions and 33 deletions

View File

@@ -21,7 +21,7 @@ angular.module('JobEventFormDefinition', [])
readonly: true,
class: 'span2'
},
event: {
event_display: {
label: 'Event',
type: 'text',
readonly: true

View File

@@ -154,7 +154,8 @@ angular.module('JobFormDefinition', [])
type: 'textarea',
readonly: true,
rows: 10,
class: 'span12'
class: 'span12',
ngShow: "result_traceback != ''"
}
},
@@ -169,7 +170,7 @@ angular.module('JobFormDefinition', [])
},
summary: {
label: 'Hosts',
icon: 'icon-filter',
icon: 'icon-th-large',
ngClick: "jobSummary()",
class: 'btn-info btn-small',
awToolTip: 'View host summary',
@@ -180,7 +181,7 @@ angular.module('JobFormDefinition', [])
icon: 'icon-list-ul',
ngClick: "jobEvents()",
class: 'btn-info btn-small',
awToolTip: 'View job events',
awToolTip: 'Edit job events',
mode: 'all',
}
},