summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_profile.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-10-14 09:02:05 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2015-10-14 09:02:05 -0400
commit962a5d8beb8b0eb634b1bff9258b209142041dc9 (patch)
tree64e636b204f2845349893d659c29117c762d8b16 /web/react/components/user_profile.jsx
parentcdbe6342bb018e16d6eb3f04c0c6c8457805e61a (diff)
parent99f243b44443babe3fd332538d2b102218834462 (diff)
downloadchat-962a5d8beb8b0eb634b1bff9258b209142041dc9.tar.gz
chat-962a5d8beb8b0eb634b1bff9258b209142041dc9.tar.bz2
chat-962a5d8beb8b0eb634b1bff9258b209142041dc9.zip
Merge pull request #1046 from asaadmahmoodspin/ui-improvements
Multiple 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 948f06444..cc6165c1b 100644
--- a/web/react/components/user_profile.jsx
+++ b/web/react/components/user_profile.jsx
@@ -32,7 +32,7 @@ export default class UserProfile extends React.Component {
componentDidMount() {
UserStore.addChangeListener(this.onChange);
if (!this.props.disablePopover) {
- $('#profile_' + this.uniqueId).popover({placement: 'right', container: 'body', trigger: 'hover', html: true, delay: {show: 200, hide: 100}});
+ $('#profile_' + this.uniqueId).popover({placement: 'right', container: 'body', trigger: 'click hover', html: true, delay: {show: 200, hide: 100}});
$('body').tooltip({selector: '[data-toggle=tooltip]', trigger: 'hover click'});
}
}