mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Move and lint
This commit is contained in:
parent
cecd2cbd71
commit
d431e37d9b
1 changed files with 3 additions and 3 deletions
|
@ -450,9 +450,6 @@ export default class ContentMessages {
|
|||
},
|
||||
};
|
||||
|
||||
// Focus the composer view
|
||||
dis.dispatch({action: 'focus_composer'})
|
||||
|
||||
// if we have a mime type for the file, add it to the message metadata
|
||||
if (file.type) {
|
||||
content.info.mimetype = file.type;
|
||||
|
@ -495,6 +492,9 @@ export default class ContentMessages {
|
|||
this.inprogress.push(upload);
|
||||
dis.dispatch({action: 'upload_started'});
|
||||
|
||||
// Focus the composer view
|
||||
dis.dispatch({action: 'focus_composer'});
|
||||
|
||||
let error;
|
||||
|
||||
function onProgress(ev) {
|
||||
|
|
Loading…
Reference in a new issue