Simon Egersand
2017-01-10 bdad6cea2c534f1808bc9eebffb75ba62abfada3
src/DaysView.js
@@ -6,7 +6,6 @@
var DOM = React.DOM;
var DateTimePickerDays = React.createClass({
   render: function() {
      var footer = this.renderFooter(),
         date = this.props.viewDate,
@@ -62,7 +61,7 @@
         weeks = [],
         days = [],
         renderer = this.props.renderDay || this.renderDay,
         isValid = this.props.isValidDate || this.isValidDate,
         isValid = this.props.isValidDate || this.alwaysValidDate,
         classes, disabled, dayProps, currentDate
      ;
@@ -130,7 +129,9 @@
         )
      );
   },
   isValidDate: function(){ return 1; }
   alwaysValidDate: function(){
      return 1;
   }
});
module.exports = DateTimePickerDays;