Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
webdevnerdstuff committed Feb 26, 2024
1 parent 3fc8408 commit 262b339
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/plugin/VColorField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,6 @@ const cardClasses = computed(() => useCardClasses({
// ------------------------- Toggle Check //
// ? Checks to prevent double triggers //
function toggleCheck(trigger: string) {
console.log('toggleCheck', trigger);
if (trigger === 'textField' && !settings.readonlyInput && !settings.readonly) {
return;
}
Expand All @@ -404,7 +403,6 @@ function toggleCheck(trigger: string) {
// ------------------------- Toggle Color Picker //
function toggleColorPicker(trigger?: string | Event): void {
console.log('toggleColorPicker', trigger);
const defaultCoords = { left: 0, right: 0, top: 0, width: 0 };
const fieldContainer = fieldContainerRef.value;
Expand All @@ -419,10 +417,7 @@ function toggleColorPicker(trigger?: string | Event): void {
return;
}
console.log('foo', colorPickerOpen.value);
colorPickerOpen.value = !colorPickerOpen.value;
console.log('foo', colorPickerOpen.value);
// If color picker is closed no further action is needed //
if (!colorPickerOpen.value) {
Expand Down

0 comments on commit 262b339

Please sign in to comment.