From 647a1b15b31317970337f5b48e9bc2a4686ddf5b Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 26 Mar 2015 12:14:08 -0700 Subject: [PATCH] GUAC-1138: Add missing semicolon within guacPager controller. --- guacamole/src/main/webapp/app/list/directives/guacPager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/webapp/app/list/directives/guacPager.js b/guacamole/src/main/webapp/app/list/directives/guacPager.js index 6b9d59010..8031ddd4f 100644 --- a/guacamole/src/main/webapp/app/list/directives/guacPager.js +++ b/guacamole/src/main/webapp/app/list/directives/guacPager.js @@ -265,7 +265,7 @@ angular.module('list').directive('guacPager', [function guacPager() { * pageNumbers array, false otherwise. */ $scope.hasMorePagesBefore = function hasMorePagesBefore() { - var firstPageNumber = $scope.pageNumbers[0] + var firstPageNumber = $scope.pageNumbers[0]; return firstPageNumber !== $scope.firstPage; };