From ac8c4108448422eb7d0e3afb53050490f62fbfbe Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Sun, 31 Mar 2024 19:12:06 +0300 Subject: [PATCH] Removed clipboard copy --- doc/theming/styled/ColorsDoc.vue | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/doc/theming/styled/ColorsDoc.vue b/doc/theming/styled/ColorsDoc.vue index ebca3a753..33c727bf7 100644 --- a/doc/theming/styled/ColorsDoc.vue +++ b/doc/theming/styled/ColorsDoc.vue @@ -10,7 +10,7 @@ {{ color }}
-
+
{{ shades[j] }}
@@ -26,11 +26,6 @@ export default { shades: [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950], colors: ['emerald', 'green', 'lime', 'red', 'orange', 'amber', 'yellow', 'teal', 'cyan', 'sky', 'blue', 'indigo', 'violet', 'purple', 'fuchsia', 'pink', 'rose', 'slate', 'gray', 'zinc', 'neutral', 'stone'] }; - }, - methods: { - copyColor(value) { - navigator.clipboard.writeText(value); - } } };