Fixing job events pagination

This commit is contained in:
chouseknecht
2013-07-02 17:03:25 -04:00
parent b909e79088
commit 20266c3054
4 changed files with 45 additions and 4 deletions

View File

@@ -147,6 +147,12 @@ angular.module('GeneratorHelpers', ['GeneratorHelpers'])
// close ngShow
html += (field.ngShow) ? "</span>" : "";
// Specific to Job Events page -showing event detail/results
html += (field.appendHTML) ? "<div ng-show=\"" + field.appendHTML + " !== null\" " +
"ng-bind-html-unsafe=\"" + field.appendHTML + "\" " +
"style=\"padding-left: \{\{ " + list.iterator + ".spaces + 12 \}\}px\" " +
"></div>\n" : "";
return html += "</td>\n";