diff --git a/lib/components/pikaday.js b/lib/components/pikaday.js index 1205669..ae7f9df 100644 --- a/lib/components/pikaday.js +++ b/lib/components/pikaday.js @@ -65,10 +65,8 @@ Ember.Pikaday.PikadayComponent = Ember.Component.extend({ var date = moment(this.get('value')); if (date.isValid()) { this.set('date', date.toDate()); - } else { - // Value is invalid. Wait for it to validate. - console.log('date is invalid'); } + // else: Value is invalid. Wait for it to validate. }.observes('value'), @@ -80,7 +78,6 @@ Ember.Pikaday.PikadayComponent = Ember.Component.extend({ // Setup bindings to input field var $el = self.$(); $el.keyup(function(event) { - console.log(event); var val = $el.val(); self.set('value', val); }); @@ -90,7 +87,6 @@ Ember.Pikaday.PikadayComponent = Ember.Component.extend({ field: $el[0], format: format, onSelect: function(date) { - console.log(date); self.set('date', date); } });