]> source.dussan.org Git - archiva.git/commitdiff
cleanup
authorOlivier Lamy <olamy@apache.org>
Tue, 6 May 2014 06:58:48 +0000 (16:58 +1000)
committerOlivier Lamy <olamy@apache.org>
Tue, 6 May 2014 06:58:48 +0000 (16:58 +1000)
archiva-modules/archiva-web/archiva-webapp/src/main/webapp/js/redback/users.js

index 79a9d1612393227308c72745bee502f8029f69de..d9cc59d90cfeef5198e7532f1e048c47e6e9f728 100644 (file)
@@ -66,7 +66,7 @@ function(jquery,utils,i18n,jqueryValidate,ko,koSimpleGrid,typeahead) {
         }
       });
       self.users(founds);
-    }
+    };
     filterNonLocked=function(){
       var founds=[];
       $(self.originalUsers()).each(function(idx,user){
@@ -75,7 +75,7 @@ function(jquery,utils,i18n,jqueryValidate,ko,koSimpleGrid,typeahead) {
         }
       });
       self.users(founds);
-    }
+    };
 
     filterPasswordChangeRequired=function(){
       var founds=[];
@@ -85,7 +85,8 @@ function(jquery,utils,i18n,jqueryValidate,ko,koSimpleGrid,typeahead) {
         }
       });
       self.users(founds);
-    }
+    };
+
     filterPasswordChangeNotRequired=function(){
       var founds=[];
       $(self.originalUsers()).each(function(idx,user){
@@ -94,7 +95,7 @@ function(jquery,utils,i18n,jqueryValidate,ko,koSimpleGrid,typeahead) {
         }
       });
       self.users(founds);
-    }
+    };
 
 
     this.addUser=function() {
@@ -144,16 +145,6 @@ function(jquery,utils,i18n,jqueryValidate,ko,koSimpleGrid,typeahead) {
       user.changePasswordChangeRequired(forceChangedPassword);
     };
 
-    this.sortByName = function() {
-      this.users.sort(function(a, b) {
-        return a.username().localeCompare(b.username());
-      });
-    };
-
-    sortByProperty = function( property ) {
-      $.log("sortByProperty:" + property.headerText);
-    }
-
     deleteUser=function(user){
       clearUserMessages();