Use ES2015 string literal

This commit is contained in:
Phan An 2017-05-04 19:55:27 +07:00
parent 0b8594d006
commit 94c1365d2a
No known key found for this signature in database
GPG key ID: 4AF3D4E287BF423F

View file

@ -48,7 +48,7 @@ export function hideOverlay () {
*/
export function copyText (txt) {
const copyArea = document.querySelector('#copyArea')
copyArea.style.top = (window.pageYOffset || document.documentElement.scrollTop) + 'px'
copyArea.style.top = `${window.pageYOffset || document.documentElement.scrollTop}px`
copyArea.value = txt
select(copyArea)
document.execCommand('copy')