From 2eabeb420533e648f40eebc541dc95ddf61e9f64 Mon Sep 17 00:00:00 2001 From: Mathieu Lagace Date: Tue, 17 Sep 2019 21:40:55 -0400 Subject: [PATCH 1/7] 3.2.4 --- public/js/calendar.js | 1 + resources/views/admin/article/index.blade.php | 12 ++--- .../views/admin/configs/activity.blade.php | 10 ++--- resources/views/admin/dashboard.blade.php | 2 + .../views/admin/schedule/event/add.blade.php | 1 + .../views/admin/schedule/modal/add.blade.php | 44 ++++++++++++++----- resources/views/admin/user/profil.blade.php | 6 ++- 7 files changed, 52 insertions(+), 24 deletions(-) diff --git a/public/js/calendar.js b/public/js/calendar.js index baca88e2..4a0ea46a 100644 --- a/public/js/calendar.js +++ b/public/js/calendar.js @@ -45,6 +45,7 @@ function switchType(date) { $.get( "/api/schedule/events/add/modal/"+selectInput.val()+"/"+date+"?api_token="+api_token, function( data ) { $( "#container" ).html( data ); console.log( "Loading defaut value for activity type ("+selectInput.val()+")" ); + $('select').selectpicker(); }); } diff --git a/resources/views/admin/article/index.blade.php b/resources/views/admin/article/index.blade.php index 7ea11e73..95a9810f 100644 --- a/resources/views/admin/article/index.blade.php +++ b/resources/views/admin/article/index.blade.php @@ -10,7 +10,7 @@
@foreach($activity as $a) -
+

{{$a->name}}

@@ -23,17 +23,17 @@