Delete the old UI!

This commit is contained in:
Joseph Schorr 2015-06-29 12:33:00 +03:00
parent 33039e9bc4
commit ff3d8bb013
54 changed files with 308 additions and 4383 deletions

View file

@ -14,9 +14,7 @@ angular.module('quay').factory('AvatarService', ['Config', '$sanitize', 'md5',
break;
case 'gravatar':
// TODO(jschorr): Remove once the new layout is in place everywhere.
var default_kind = Config.isNewLayout() ? '404' : 'identicon';
return '//www.gravatar.com/avatar/' + hash + '?d=' + default_kind + '&size=' + size;
return '//www.gravatar.com/avatar/' + hash + '?d=404&size=' + size;
break;
}
};