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.

This commit is contained in:
Chris Houseknecht 2013-11-13 15:09:14 +00:00
parent e99ac9d668
commit 4650af9cb9

View File

@ -237,8 +237,7 @@ angular.module('ListGenerator', ['GeneratorHelpers'])
}
}
}
html += "</div><!-- list-acitons -->\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 += "</div><!-- list-acitons -->\n";
html += "</div><!-- col-lg-7 -->\n";
}
else {
html += "<div class=\"col-lg-7\"></div>\n";