removing past dates from the date picker since the widget is for upcoming events
authorAnthony Talarico <talarico@gaslightmedia.com>
Tue, 31 Jan 2017 19:05:39 +0000 (14:05 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Tue, 31 Jan 2017 19:05:39 +0000 (14:05 -0500)
views/front/events/sidebarEvents.html

index ea8fc03..70f7ba8 100644 (file)
                 }
             });
         }
-        
+        var dateToday = new Date();
         // get the year and month from the datepicker's dropdown
         jQuery('#sidebar-date-select').datepicker( {
             changeMonth: true,
             changeYear: true,
             showButtonPanel: true,
+            minDate: dateToday,
             dateFormat: 'Y-m',
             onChange: function(dateText, inst) { 
                 var month = jQuery("#ui-datepicker-div .ui-datepicker-month :selected").val();