1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

UI Automation Assistance

Added ID attribute to Select button on sublists. For example, organizations detail page -> users -> add user.
This commit is contained in:
Chris Houseknecht 2014-09-02 16:12:48 -04:00
parent efd590f917
commit 8d46e206a8

View File

@ -414,7 +414,7 @@ angular.module('ListGenerator', ['GeneratorHelpers'])
if (options.mode === 'select' && (options.selectButton === undefined || options.selectButton)) {
html += "<div class=\"navigation-buttons\">\n";
html += " <button class=\"btn btn-sm btn-primary pull-right\" aw-tool-tip=\"Complete your selection\" " +
html += " <button class=\"btn btn-sm btn-primary pull-right\" id=\"select_btn\" aw-tool-tip=\"Complete your selection\" " +
"ng-click=\"finishSelection()\" ng-disabled=\"disableSelectBtn\"><i class=\"fa fa-check\"></i> Select</button>\n";
html += "</div>\n";
}