From 9d2fadc51a0bebe42fa6cd8746b1d9ec004774d8 Mon Sep 17 00:00:00 2001 From: James Laska Date: Tue, 9 Sep 2014 10:56:57 -0400 Subject: [PATCH] Update pagination DOM id's Moves the iterator-based id to the top-level
. The pagination links and labels are now children of this
. Also, renamed id on the buttons and labels regions. --- awx/ui/static/lib/ansible/generator-helpers.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/awx/ui/static/lib/ansible/generator-helpers.js b/awx/ui/static/lib/ansible/generator-helpers.js index 2574de131e..bfff0a6baf 100644 --- a/awx/ui/static/lib/ansible/generator-helpers.js +++ b/awx/ui/static/lib/ansible/generator-helpers.js @@ -819,9 +819,9 @@ angular.module('GeneratorHelpers', []) set = params.set, html = ''; html += "\n"; - html += "
\n"; - html += "
\n"; - html += "
    \n"; + html += "
    \n"; + html += "
    \n"; + html += "
      \n"; html += "
    • " + "
    • \n"; @@ -842,7 +842,7 @@ angular.module('GeneratorHelpers', []) html += "
    \n"; html += "
    \n"; html += "
    \n"; - html += "
    \n"; + html += "
    \n"; html += "Page {{ " + iterator + "_page }} of {{ " + iterator + "_num_pages }} ({{ " + iterator + "_total_rows | number:0 }} items)"; html += "
    \n"; html += "
    \n"; @@ -851,4 +851,4 @@ angular.module('GeneratorHelpers', []) return html; }; } -]); \ No newline at end of file +]);