summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-07-07 20:16:14 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-07-07 20:16:14 +0500
commit14f02b770b5b5ea65003ae6e885d52d619a3f836 (patch)
tree1ad8f9c232b1619c2865336514f8945a2983cda0
parent73cb6904a1d8f365a41695f1b673975bc0228e9a (diff)
parent95b9f872882b367556ca2330eea8c8309db542e6 (diff)
downloadchat-14f02b770b5b5ea65003ae6e885d52d619a3f836.tar.gz
chat-14f02b770b5b5ea65003ae6e885d52d619a3f836.tar.bz2
chat-14f02b770b5b5ea65003ae6e885d52d619a3f836.zip
Merge branch 'master' of https://github.com/mattermost/platform
-rw-r--r--api/user.go2
-rw-r--r--web/react/components/msg_typing.jsx8
2 files changed, 9 insertions, 1 deletions
diff --git a/api/user.go b/api/user.go
index 292d2b61b..ada781bc7 100644
--- a/api/user.go
+++ b/api/user.go
@@ -593,7 +593,7 @@ func createProfileImage(username string, userId string) ([]byte, *model.AppError
h.Write([]byte(userId))
seed := h.Sum32()
- color := colors[int(seed)%len(colors)]
+ color := colors[int64(seed)%int64(len(colors))]
img := image.NewRGBA(image.Rect(0, 0, int(utils.Cfg.ImageSettings.ProfileWidth), int(utils.Cfg.ImageSettings.ProfileHeight)))
draw.Draw(img, img.Bounds(), &image.Uniform{color}, image.ZP, draw.Src)
diff --git a/web/react/components/msg_typing.jsx b/web/react/components/msg_typing.jsx
index 9d3904757..a6953028f 100644
--- a/web/react/components/msg_typing.jsx
+++ b/web/react/components/msg_typing.jsx
@@ -11,6 +11,11 @@ module.exports = React.createClass({
componentDidMount: function() {
SocketStore.addChangeListener(this._onChange);
},
+ componentWillReceiveProps: function(newProps) {
+ if(this.props.channelId !== newProps.channelId) {
+ this.setState({text:""});
+ }
+ },
componentWillUnmount: function() {
SocketStore.removeChangeListener(this._onChange);
},
@@ -37,6 +42,9 @@ module.exports = React.createClass({
}, 3000);
}
}
+ else if (msg.action == "posted" && msg.channel_id === this.props.channelId) {
+ this.setState({text:""})
+ }
},
getInitialState: function() {
return { text: "" };