AC-525 Fixed inventory and job navigation issues. Fixed nagging horizontal scroll in dialogs with accordions.

This commit is contained in:
chouseknecht
2013-09-26 22:02:40 -04:00
parent 567605cc59
commit 7bfa0c4b0c
9 changed files with 42 additions and 17 deletions

View File

@@ -19,7 +19,7 @@ angular.module('InventoryFormDefinition', [])
navigationLinks: {
inventory: {
href: "/#/inventories/{{ inventory_id }}",
label: "Inventory Properties",
label: "Properties",
icon: "icon-edit",
active: true
},

View File

@@ -10,17 +10,19 @@ angular.module('JobFormDefinition', [])
.value(
'JobForm', {
addTitle: 'Create Job', //Legend in add mode
editTitle: '{{ id }} - {{ name }}', //Legend in edit mode
addTitle: 'Create Job',
editTitle: '{{ id }} - {{ name }}',
name: 'jobs',
well: true,
collapse: true,
collapseMode: 'edit',
collapseTitle: 'Job Template',
twoColumns: true,
navigationLinks: {
details: {
href: "/#/jobs/{{ job_id }}",
label: "\{\{ job_id + '- ' + name \}\}",
listLabel: 'Job Details',
label: 'Status',
icon: 'icon-zoom-in',
active: true,
ngShow: "job_id !== null"