Browse Source

Focus textarea when text is inserted (#1320)

Place space after uploaded filenames
closed-social-glitch-2
Rachel H 7 years ago
committed by Eugen
parent
commit
0930ce5560
2 changed files with 6 additions and 1 deletions
  1. +4
    -0
      .gitignore
  2. +2
    -1
      app/assets/javascripts/components/reducers/compose.jsx

+ 4
- 0
.gitignore View File

@ -28,3 +28,7 @@ neo4j/
# Ignore Capistrano customizations # Ignore Capistrano customizations
config/deploy/* config/deploy/*
# Ignore IDE files
.vscode/

+ 2
- 1
app/assets/javascripts/components/reducers/compose.jsx View File

@ -76,7 +76,8 @@ function appendMedia(state, media) {
map.update('media_attachments', list => list.push(media)); map.update('media_attachments', list => list.push(media));
map.set('is_uploading', false); map.set('is_uploading', false);
map.set('resetFileKey', Math.floor((Math.random() * 0x10000))); map.set('resetFileKey', Math.floor((Math.random() * 0x10000)));
map.update('text', oldText => `${oldText} ${media.get('text_url')}`.trim());
map.set('focusDate', new Date());
map.update('text', oldText => `${oldText.trim()} ${media.get('text_url')}`.trim() + ' ');
}); });
}; };

Loading…
Cancel
Save