From 4650af9cb9a3d16e48fe8491ebe920a062bf6443 Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Wed, 13 Nov 2013 15:09:14 +0000 Subject: [PATCH] AC-609 Fixed issue with help button not displaying correctly on 'select' pages where user can pick an existing object (i.e. users, credentials, etc) to add to a parent object. --- awx/ui/static/lib/ansible/list-generator.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/awx/ui/static/lib/ansible/list-generator.js b/awx/ui/static/lib/ansible/list-generator.js index 6ee4d26908..1891c4a53a 100644 --- a/awx/ui/static/lib/ansible/list-generator.js +++ b/awx/ui/static/lib/ansible/list-generator.js @@ -237,8 +237,7 @@ angular.module('ListGenerator', ['GeneratorHelpers']) } } } - html += "\n"; - + //select instructions if (options.mode == 'select' && list.selectInstructions) { var btn = { @@ -246,15 +245,16 @@ angular.module('ListGenerator', ['GeneratorHelpers']) dataPlacement: 'left', dataContainer: 'body', icon: "icon-question-sign", - 'class': 'btn-sm btn-help btn-info', + 'class': 'btn-xs btn-help btn-info', awToolTip: 'Click for help', dataTitle: 'Help', iconSize: 'large' }; html += this.button(btn, 'select'); } + + html += "\n"; html += "\n"; - } else { html += "
\n";