update code style

This commit is contained in:
vitormalencar
2021-01-21 11:45:33 +01:00
parent d8a51544bd
commit 971834388c
16 changed files with 216 additions and 216 deletions

View File

@ -14,17 +14,17 @@
<!-- 3. Instantiate clipboard -->
<script>
var clipboard = new ClipboardJS(".btn", {
var clipboard = new ClipboardJS('.btn', {
text: function () {
return "to be or not to be";
return 'to be or not to be';
},
});
clipboard.on("success", function (e) {
clipboard.on('success', function (e) {
console.log(e);
});
clipboard.on("error", function (e) {
clipboard.on('error', function (e) {
console.log(e);
});
</script>