Fix button ordering

This commit is contained in:
Joe Fiorini 2015-07-29 17:04:18 -04:00
parent c2d1e3865f
commit 8ce7914cb4
2 changed files with 15 additions and 15 deletions

View File

@ -82,6 +82,16 @@ export default
},
actions: {
create: {
mode: 'all',
ngClick: "createGroup()",
awToolTip: "Create a new group"
},
properties: {
mode: 'all',
awToolTip: "Edit inventory properties",
ngClick: 'editInventoryProperties()'
},
launch: {
mode: 'all',
ngShow: 'inventory.can_run_ad_hoc_commands',
@ -93,16 +103,6 @@ export default
// awToolTip: "{{ adhocButtonTipContents }}",
// dataTipWatch: "adhocButtonTipContents"
},
create: {
mode: 'all',
ngClick: "createGroup()",
awToolTip: "Create a new group"
},
properties: {
mode: 'all',
awToolTip: "Edit inventory properties",
ngClick: 'editInventoryProperties()'
},
refresh: {
mode: 'all',
awToolTip: "Refresh the page",

View File

@ -252,17 +252,17 @@ export default
},
actions: {
close: {
mode: 'all',
awToolTip: "Close Activity Stream view",
ngClick: "closeStream()"
},
refresh: {
mode: 'all',
id: 'activity-stream-refresh-btn',
'class': 'btn-xs',
awToolTip: "Refresh the page",
ngClick: "refreshStream()"
},
close: {
mode: 'all',
awToolTip: "Close Activity Stream view",
ngClick: "closeStream()"
}
},