Added list-actions class around refresh group on job status page. Now refresh is pulled to the right as it should be.

This commit is contained in:
chouseknecht 2013-10-15 17:30:40 -04:00
parent 1cda0dd1a9
commit f5b679b241

View File

@ -933,13 +933,13 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'ngCookies'])
// Add status fields section (used in Jobs form)
html += "<div class=\"well\">\n";
if (this.form.statusActions) {
//html += "<div class=\"status-actions\">\n";
html += "<div class=\"list-actions\">\n";
var act;
for (action in this.form.statusActions) {
act = this.form.statusActions[action];
html += this.button(act, action);
}
//html += "</div>\n";
html += "</div>\n";
//html += "<div class=\"status-spin\"><i class=\"icon-spinner icon-spin\" ng-show=\"statusSearchSpin == true\"></i></div>\n";
}
html += "<div class=\"form-horizontal status-fields\">\n";