Skip to content

Commit

Permalink
chore(console): remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
zoltanszogyenyi committed Nov 9, 2023
1 parent 47cd4a9 commit d01a107
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/drawer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ export function initDrawers() {
const $drawerEl = document.getElementById(drawerId);

if ($drawerEl) {
console.log('add new drawer' + drawerId);
const placement = $triggerEl.getAttribute('data-drawer-placement');
const bodyScrolling = $triggerEl.getAttribute(
'data-drawer-body-scrolling'
Expand Down
1 change: 0 additions & 1 deletion src/components/modal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,6 @@ export function initModals() {
const $modalEl = document.getElementById(modalId);

if ($modalEl) {
console.log('add new modal' + modalId);
const placement = $modalEl.getAttribute('data-modal-placement');
const backdrop = $modalEl.getAttribute('data-modal-backdrop');
new Modal(
Expand Down

0 comments on commit d01a107

Please sign in to comment.