From df5f384916d23845c486bcef45547c5890265516 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Fri, 6 Mar 2015 16:54:56 -0500 Subject: [PATCH] Removing comment --- awx/ui/static/js/controllers/Jobs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/controllers/Jobs.js b/awx/ui/static/js/controllers/Jobs.js index 3e313c3099..3b63ac21c3 100644 --- a/awx/ui/static/js/controllers/Jobs.js +++ b/awx/ui/static/js/controllers/Jobs.js @@ -234,7 +234,7 @@ export function JobsListController ($rootScope, $log, $scope, $compile, $routePa page_row = Math.max($('.page-row:eq(0)').outerHeight(), 33); header = Math.max($('#completed_jobs_table thead').height(), 24); height = Math.floor(available_height / 2) - header - page_row - search_row - 30; - row_height = (docw < 1350) ? 47 : 44; //27; // JET march 6: changing this from 27 to 44 due to new icon font sizes/increased row height. + row_height = (docw < 1350) ? 47 : 44; max_rows = Math.floor(height / row_height); max_rows = (max_rows < 5) ? 5 : max_rows; }