@ -29,7 +29,7 @@ module.exports = function copyToClipboard (getContent) {
}
} catch (e) {}
copy(copiableContent)
addTooltip(event, 'Successfully copied!')
addTooltip('Successfully copied!')
return copyIcon
@ -38,7 +38,7 @@ var css = csjs`
`
module.exports = function addTooltip (event, tooltipText) {
module.exports = function addTooltip (tooltipText) {
var tooltip = yo`<div class=${css.tooltip}>${tooltipText}</div>`
document.body.appendChild(tooltip)
setTimeout(function () {