Latest UI changes

This commit is contained in:
chouseknecht
2013-05-14 11:05:56 -04:00
parent 55f44b86f1
commit c9018a0aca
8 changed files with 204 additions and 6 deletions

View File

@@ -98,7 +98,7 @@ function CredentialsList ($scope, $rootScope, $location, $log, $routeParams, Res
if (scope.selected.length > 0 ) {
var credential = null;
for (var i=0; i < scope.selected.length; i++) {
for (var j=0; j < scope.Credentials.length; j++) {
for (var j=0; j < scope.credentials.length; j++) {
if (scope.credentials[j].id == scope.selected[i]) {
credential = scope.credentials[j];
}