You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -93,7 +93,7 @@ As you may expect, the `cut` action only works on `<input>` or `<textarea>` elem
93
93
94
94
Truth is, you don't even need another element to copy its content from. You can just include a `data-clipboard-text` attribute in your trigger element.
For a live demonstration, open this [site](http://clipboardjs.com/) and just your console :)
128
+
For a live demonstration, open this [site](https://clipboardjs.com/) and just your console :)
129
129
130
130
## Advanced Options
131
131
@@ -162,13 +162,13 @@ clipboard.destroy();
162
162
163
163
This library relies on both [Selection](https://developer.mozilla.org/en-US/docs/Web/API/Selection) and [execCommand](https://developer.mozilla.org/en-US/docs/Web/API/Document/execCommand) APIs. The first one is [supported by all browsers](http://caniuse.com/#search=selection) while the second one is supported in the following browsers.
The good news is that clipboard.js gracefully degrades if you need to support older browsers. All you have to do is show a tooltip saying `Copied!` when `success` event is called and `Press Ctrl+C to copy` when `error` event is called because the text is already selected.
170
170
171
-
For a live demonstration, open this [site](http://clipboardjs.com) on Safari.
171
+
For a live demonstration, open this [site](https://clipboardjs.com) on Safari.
0 commit comments