summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_profile.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-08-04 19:12:20 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-08-04 19:12:20 +0500
commit77f52da25512dc6ab80635efaa6c22a2887cd5e2 (patch)
treeaed6410e1119eceeb1c3789b8d1a2442b67d746c /web/react/components/user_profile.jsx
parent2c46ee8420eb19d827d3f2072bd536aae2038f84 (diff)
downloadchat-77f52da25512dc6ab80635efaa6c22a2887cd5e2.tar.gz
chat-77f52da25512dc6ab80635efaa6c22a2887cd5e2.tar.bz2
chat-77f52da25512dc6ab80635efaa6c22a2887cd5e2.zip
UI Improvements
Diffstat (limited to 'web/react/components/user_profile.jsx')
-rw-r--r--web/react/components/user_profile.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/user_profile.jsx b/web/react/components/user_profile.jsx
index 65f025919..f7e1a6257 100644
--- a/web/react/components/user_profile.jsx
+++ b/web/react/components/user_profile.jsx
@@ -57,7 +57,7 @@ module.exports = React.createClass({
if (!config.ShowEmail) {
data_content += "<div class='text-nowrap'>Email not shared</div>";
} else {
- data_content += "<div><a href='mailto:" + this.state.profile.email + "' class='text-nowrap text-lowercase'>" + this.state.profile.email + "</a></div>";
+ data_content += "<div data-toggle='tooltip' title= '" + this.state.profile.email + "'><a href='mailto:" + this.state.profile.email + "' class='text-nowrap text-lowercase user-popover__email'>" + this.state.profile.email + "</a></div>";
}
return (