Skip to content

Commit e3f323a

Browse files
committed
WRTC
1 parent df82f3f commit e3f323a

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

resources/js/components/headers/TimelineHeader.vue

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,6 @@ const emits = defineEmits<{
118118
help: [];
119119
}>();
120120
121-
// 'UPLOAD_PHOTO' => 'Upload Photo',
122-
// 'IMPORT_LINK' => 'Import from Link',
123-
// 'IMPORT_DROPBOX' => 'Import from Dropbox',
124-
// 'IMPORT_SERVER' => 'Import from Server',
125-
// 'NEW_ALBUM' => 'New Album',
126-
// 'NEW_TAG_ALBUM' => 'New Tag Album',
127-
// 'UPLOAD_TRACK' => 'Upload track',
128-
// 'DELETE_TRACK' => 'Delete track',
129121
const lycheeStore = useLycheeStateStore();
130122
const togglableStore = useTogglablesStateStore();
131123
const favourites = useFavouriteStore();

resources/js/composables/album/uploadEvents.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ export function useMouseEvents(
2020
}
2121

2222
function dropUpload(e: DragEvent) {
23-
// console.log("dropUpload");
2423
if (rights.value?.can_upload !== true) {
2524
return;
2625
}
@@ -30,7 +29,6 @@ export function useMouseEvents(
3029
if (e.dataTransfer === null) {
3130
return;
3231
}
33-
// console.log(e.dataTransfer.files.length);
3432

3533
if (e.dataTransfer.files.length > 0) {
3634
for (let i = 0; i < e.dataTransfer.files.length; i++) {
@@ -45,7 +43,6 @@ export function useMouseEvents(
4543
}
4644

4745
function onPaste(e: ClipboardEvent) {
48-
// console.log("onPaste");
4946
if (shouldIgnoreKeystroke()) {
5047
return;
5148
}

resources/js/composables/timeline/routeDateUpdater.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export function useRouteDateUpdater(sentinel: Ref, loadMore: () => void, loadDat
1010
const startAt = section.getBoundingClientRect().top + currentPosition;
1111
const endAt = startAt + section.offsetHeight;
1212
const isInView = currentPosition >= startAt && currentPosition < endAt;
13-
console.log("Sections", section.dataset.date, isInView);
1413

1514
if (isInView) {
1615
return section;

0 commit comments

Comments
 (0)