summaryrefslogtreecommitdiffstats
path: root/web/react/components/mention_list.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-07-10 12:12:03 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-07-10 12:12:03 -0400
commitf433da2e5fcfb199e735c5231279f1d09820ba1d (patch)
tree2866dac2be0f5a023f03e8be877d9aa438e32af4 /web/react/components/mention_list.jsx
parentff128d7c161ead05d0cd7cc6dbbe2dbdd06259e1 (diff)
parent7d7a50d6b184db0c94180982d9751d6d7f55d7af (diff)
downloadchat-f433da2e5fcfb199e735c5231279f1d09820ba1d.tar.gz
chat-f433da2e5fcfb199e735c5231279f1d09820ba1d.tar.bz2
chat-f433da2e5fcfb199e735c5231279f1d09820ba1d.zip
Merge pull request #156 from asaadmahmoodspin/master
Improving mentions list and other UI improvements
Diffstat (limited to 'web/react/components/mention_list.jsx')
-rw-r--r--web/react/components/mention_list.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/mention_list.jsx b/web/react/components/mention_list.jsx
index 3fac41073..25834b9e5 100644
--- a/web/react/components/mention_list.jsx
+++ b/web/react/components/mention_list.jsx
@@ -129,7 +129,7 @@ module.exports = React.createClass({
if (numMentions < 1) return (<div/>);
- var height = (numMentions*37) + 2;
+ var height = (numMentions*36) + 4;
var width = $('#'+this.props.id).parent().width();
var bottom = $(window).height() - $('#'+this.props.id).offset().top;
var left = $('#'+this.props.id).offset().left;