From d128314e61d3231c1ded771bac97e785650e32fe Mon Sep 17 00:00:00 2001 From: Benjamin Takats Date: Sat, 14 Jan 2023 20:46:07 +0100 Subject: [PATCH] add landing pages for meetups --- .../livewire/meetup/landing-page.blade.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/resources/views/livewire/meetup/landing-page.blade.php b/resources/views/livewire/meetup/landing-page.blade.php index 4ae94f47..b73e6b72 100644 --- a/resources/views/livewire/meetup/landing-page.blade.php +++ b/resources/views/livewire/meetup/landing-page.blade.php @@ -82,23 +82,6 @@ yearChanged: function(e) { @this.set('year', e.currentYear); }, - clickDay: function(e) { - if(e.events.length > 0) { - var content = ''; - var ids = []; - - for(var i in e.events) { - ids.push(e.events[i].id); - content += '
' - + '
' + e.events[i].location + '
' - + '
' + e.events[i].description + '
' - + '
'; - } - console.log(content); - - $wire.call('popover', content, ids.join(',')); - } - }, }); }, }"