Skip to content

Commit

Permalink
console logs removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncan Graham Walker committed Jul 19, 2015
1 parent c6a5688 commit 53a20c1
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"boss": true,
"curly": true,
"debug": false,
"devel": true,
"devel": false,
"eqeqeq": true,
"evil": true,
"forin": false,
Expand Down
2 changes: 0 additions & 2 deletions addon/components/error-field.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ export default Ember.Component.extend({
notifyChangeInValidity: observer('canAndShouldShowError', function() {
const actionProperty = this.get('canAndShouldShowError') ? 'invalidAction' : 'validAction';

console.log('sending');

this.sendAction(actionProperty);
}),

Expand Down
3 changes: 0 additions & 3 deletions addon/components/input-group.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,10 @@ export default Ember.Component.extend({
},

setGroupAsInvalid() {
console.log('invalid');
this.set('isValid', false);
},

setGroupAsValid() {
console.log('valid');
this.set('isValid', true);
},

Expand All @@ -178,7 +176,6 @@ export default Ember.Component.extend({
/* Public methods - avoid xBinding syntax */

listenForNewlyValid: observer('isValid', function() {
console.log(this.get('isValid'));
if (this.get('isValid')) {
this.set('isNewlyValid', true);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-easy-form-extensions",
"version": "1.0.1",
"version": "1.0.2",
"description": "Enhances Ember EasyForm by providing easy action handling, validations, and Ember 1.13 support for your forms",
"directories": {
"doc": "doc",
Expand Down

0 comments on commit 53a20c1

Please sign in to comment.