Skip to content

Commit

Permalink
remove unused comment
Browse files Browse the repository at this point in the history
  • Loading branch information
icebob committed Feb 13, 2017
1 parent c61ab6b commit 8c47cf9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/fields/abstractField.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export default {
},

set(newValue) {
// console.log("Model value changed!", newValue);
if (isFunction(this.formatValueToModel))
newValue = this.formatValueToModel(newValue);

Expand All @@ -43,7 +42,6 @@ export default {

watch: {
value(newVal, oldVal) {
// console.log("Changed", newVal, oldVal);
if (isFunction(this.schema.onChanged)) {
this.schema.onChanged(this.model, newVal, oldVal, this.schema);
}
Expand Down

0 comments on commit 8c47cf9

Please sign in to comment.