From 85d41e12cfd3caba1756f60bf6def00be9886d4f Mon Sep 17 00:00:00 2001 From: Kuan Cao Date: Sun, 12 Feb 2017 15:03:13 -0500 Subject: [PATCH] 2-12-2017 focus on the copy input when using safari 1. allow focus on the input box when copy --- angular-clipboard.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/angular-clipboard.js b/angular-clipboard.js index 084fbaf..0bcfc85 100644 --- a/angular-clipboard.js +++ b/angular-clipboard.js @@ -30,6 +30,8 @@ return angular.module('angular-clipboard', []) node.select(); if(!$document[0].execCommand('copy')) { + node.focus(); + node.setSelectionRange(0, node.textContent.length); throw('failure copy'); } selection.removeAllRanges();