From 0111d699a38d9eb6096fad941aab7dfc3ff7c0ff Mon Sep 17 00:00:00 2001 From: James Allen Date: Tue, 5 Aug 2014 17:10:24 +0100 Subject: [PATCH] Move sort click action to just the header text, not select all input --- .../web/app/views/project/list/project-list.jade | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/services/web/app/views/project/list/project-list.jade b/services/web/app/views/project/list/project-list.jade index 14ab4fc3ce..3d82d4c550 100644 --- a/services/web/app/views/project/list/project-list.jade +++ b/services/web/app/views/project/list/project-list.jade @@ -118,18 +118,18 @@ ) li.container-fluid .row - .col-xs-6(ng-click="changePredicate('name')") + .col-xs-6 input.select-all( select-all, type="checkbox" ) - span.header.clickable Title + span.header.clickable(ng-click="changePredicate('name')") Title i.tablesort.fa(ng-class="getSortIconClass('name')") - .col-xs-2(ng-click="changePredicate('accessLevel')") - span.header.clickable Owner + .col-xs-2 + span.header.clickable(ng-click="changePredicate('accessLevel')") Owner i.tablesort.fa(ng-class="getSortIconClass('accessLevel')") - .col-xs-4(ng-click="changePredicate('lastUpdated')") - span.header.clickable Last Modified + .col-xs-4 + span.header.clickable(ng-click="changePredicate('lastUpdated')") Last Modified i.tablesort.fa(ng-class="getSortIconClass('lastUpdated')") li.project_entry.container-fluid( ng-repeat="project in visibleProjects | orderBy:predicate:reverse",