Display a tool tip with the user's email when you hover an account link

Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce
2009-01-14 13:11:56 -08:00
parent 01c3417599
commit 83a48b731d

View File

@@ -22,7 +22,7 @@ import com.google.gerrit.client.data.AccountInfoCache;
import com.google.gerrit.client.reviewdb.Account;
/** Link to any user's account dashboard. */
public class AccountDashboardLink extends DirectScreenLink {
public class AccountDashboardLink extends DirectScreenLink {
/** Create a link after locating account details from an active cache. */
public static AccountDashboardLink link(final AccountInfoCache cache,
final Account.Id id) {
@@ -39,6 +39,7 @@ public class AccountDashboardLink extends DirectScreenLink {
public AccountDashboardLink(final String text, final AccountInfo ai) {
super(text, Link.toAccountDashboard(ai));
addStyleName("gerrit-AccountName");
setTitle(FormatUtil.nameEmail(ai));
account = ai;
}