From 53a20c1c925846a5a92e706e342189357e9eff13 Mon Sep 17 00:00:00 2001 From: Duncan Graham Walker Date: Sun, 19 Jul 2015 16:04:25 -0400 Subject: [PATCH] console logs removed --- .jshintrc | 2 +- addon/components/error-field.js | 2 -- addon/components/input-group.js | 3 --- package.json | 2 +- 4 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.jshintrc b/.jshintrc index 08096ef..65d83b4 100644 --- a/.jshintrc +++ b/.jshintrc @@ -8,7 +8,7 @@ "boss": true, "curly": true, "debug": false, - "devel": true, + "devel": false, "eqeqeq": true, "evil": true, "forin": false, diff --git a/addon/components/error-field.js b/addon/components/error-field.js index df77daf..f84202b 100644 --- a/addon/components/error-field.js +++ b/addon/components/error-field.js @@ -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); }), diff --git a/addon/components/input-group.js b/addon/components/input-group.js index a66ce4b..25d853a 100644 --- a/addon/components/input-group.js +++ b/addon/components/input-group.js @@ -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); }, @@ -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); } diff --git a/package.json b/package.json index 9b8d2bf..d1b5f0f 100644 --- a/package.json +++ b/package.json @@ -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",