mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-05 23:51:48 -05:00
16 lines
478 B
JavaScript
16 lines
478 B
JavaScript
const actions = {
|
|
selector: 'td[class="List-actionsContainer"]',
|
|
elements: {
|
|
launch: 'i[class="fa icon-launch"]',
|
|
schedule: 'i[class="fa icon-schedule"]',
|
|
copy: 'i[class="fa icon-copy"]',
|
|
edit: 'i[class="fa icon-pencil"]',
|
|
delete: 'i[class="fa icon-trash-o"]',
|
|
view: 'i[class="fa fa-search-plus"]',
|
|
sync: 'i[class="fa fa-cloud-download"]',
|
|
test: 'i[class="fa fa-bell-o'
|
|
}
|
|
};
|
|
|
|
module.exports = actions;
|