Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #4622 from thanhluan001/fix4536
Browse files Browse the repository at this point in the history
Fix bug #4536, No tooltip for author name in extension manager
  • Loading branch information
dangoor committed Aug 1, 2013
2 parents ba7e06d + b3c51b8 commit 88fea0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensibility/registry_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ define(function (require, exports, module) {
if (result !== "") {
result += " / ";
}
result += "<a href='" + htmlEscape(ownerLink) + "'>" + htmlEscape(userId) + "</a>";
result += "<a href='" + htmlEscape(ownerLink) + "' title='" + htmlEscape(ownerLink) + "'>" + htmlEscape(userId) + "</a>";
}
return result;
};
Expand Down

0 comments on commit 88fea0e

Please sign in to comment.