Merge pull request #775 from ThibG/glitch-soc/merge-upstream

Merge upstream changes
This commit is contained in:
ThibG
2018-10-11 21:28:03 +02:00
committed by GitHub
12 changed files with 94 additions and 24 deletions

View File

@@ -56,7 +56,7 @@ delegate(document, '.input-copy input', 'click', ({ target }) => {
});
delegate(document, '.input-copy button', 'click', ({ target }) => {
const input = target.parentNode.querySelector('input');
const input = target.parentNode.querySelector('.input-copy__wrapper input');
input.focus();
input.select();