Skip to content

Commit 308d9b1

Browse files
committed
docs(modal): remove event from console
1 parent db92545 commit 308d9b1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

static/usage/v8/modal/sheet/drag-move-event/demo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
});
5757

5858
modal.addEventListener('ionDragEnd', (event) => {
59-
console.log('Drag ended', JSON.stringify(event.detail));
59+
console.log('Drag ended');
6060

6161
// `snapBreakpoint` tells us which snap point the modal will animate to after the drag ends
6262
const { progress, snapBreakpoint } = event.detail;

static/usage/v8/modal/sheet/drag-start-end-events/demo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
});
5050

5151
modal.addEventListener('ionDragEnd', (event) => {
52-
console.log('Drag ended', JSON.stringify(event.detail));
52+
console.log('Drag ended');
5353

5454
header.style.opacity = 1;
5555
});

0 commit comments

Comments
 (0)