Commit 36b5f236 authored by Mike Greiling's avatar Mike Greiling

clarify safari browser support

parent 7a78292f
...@@ -21,10 +21,10 @@ function genericSuccess(e) { ...@@ -21,10 +21,10 @@ function genericSuccess(e) {
$(e.trigger).blur(); $(e.trigger).blur();
} }
// Safari doesn't support `execCommand`, so instead we inform the user to /**
// copy manually. * Safari > 10 doesn't support `execCommand`, so instead we inform the user to copy manually.
// * See http://clipboardjs.com/#browser-support
// See http://clipboardjs.com/#browser-support */
function genericError(e) { function genericError(e) {
let key; let key;
if (/Mac/i.test(navigator.userAgent)) { if (/Mac/i.test(navigator.userAgent)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment