From c5dd0c1f87f19198aab97914abf5409f629383b6 Mon Sep 17 00:00:00 2001 From: Joseph Harkins <47038639+josephharkins@users.noreply.github.com> Date: Fri, 10 Jun 2022 23:33:13 +0100 Subject: [PATCH] Update article.md Stated that navigator.clipboard API is not compatible in Firefox but it is: https://caniuse.com/mdn-api_navigator_clipboard --- 2-ui/4-forms-controls/3-events-change-input/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/4-forms-controls/3-events-change-input/article.md b/2-ui/4-forms-controls/3-events-change-input/article.md index df1e1c7a..097217f5 100644 --- a/2-ui/4-forms-controls/3-events-change-input/article.md +++ b/2-ui/4-forms-controls/3-events-change-input/article.md @@ -101,7 +101,7 @@ Even if someone decides to save `event.clipboardData` in an event handler, and t To reiterate, [event.clipboardData](https://www.w3.org/TR/clipboard-apis/#clipboardevent-clipboarddata) works solely in the context of user-initiated event handlers. -On the other hand, [navigator.clipboard](https://www.w3.org/TR/clipboard-apis/#h-navigator-clipboard) is the more recent API, meant for use in any context. It asks for user permission, if needed. Not supported in Firefox. +On the other hand, [navigator.clipboard](https://www.w3.org/TR/clipboard-apis/#h-navigator-clipboard) is the more recent API, meant for use in any context. It asks for user permission, if needed. ## Summary