Fix that the copy button of verify link did not work. (#8938)

master
mayaeh 6 years ago committed by Eugen Rochko
parent 7f9dd92a27
commit e50cb5f4bd
  1. 2
      app/javascript/packs/public.js

@ -184,7 +184,7 @@ function main() {
}); });
delegate(document, '.input-copy button', '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.focus();
input.select(); input.select();

Loading…
Cancel
Save