UI Automation

Added additional ID attributes to pagination widget. Fixed comment spelling error in app.js
This commit is contained in:
Chris Houseknecht 2014-08-28 13:44:18 -04:00
parent 116e1db2a8
commit 4e4b5852cb
2 changed files with 2 additions and 2 deletions

View File

@ -619,7 +619,7 @@ angular.module('Tower', [
});
if (!$AnsibleConfig) {
// there may be leg time loading the config file, so temporarily use what's in local storage
// there may be time lag when loading the config file, so temporarily use what's in local storage
$AnsibleConfig = Store('AnsibleConfig');
}

View File

@ -837,7 +837,7 @@ angular.module('GeneratorHelpers', [])
html += "</div>\n";
html += "<div class=\"col-lg-4 col-md-4\" ng-hide=\"" + iterator + "_mode == 'lookup'\">\n";
html += "<div id=\"page-label-container\" class=\"page-label\">\n";
html += "Page {{ " + iterator + "_page }} of {{ " + iterator + "_num_pages }} ({{ " + iterator + "_total_rows | number:0 }} items)";
html += "Page <span id=\"current-page\">{{ " + iterator + "_page }}</span> of <span id=\"total-pages\">{{ " + iterator + "_num_pages }}</span> (<span id=\"total-items\">{{ " + iterator + "_total_rows | number:0 }}</span> items)";
html += "</div>\n";
html += "</div>\n";
html += "</div>\n";