From 9ebd618bf866ebc1994e2e7234010caef6940ac2 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Mon, 22 May 2017 10:23:54 +0800 Subject: [PATCH] _setValid --- bi/base.js | 8 ++++---- docs/base.js | 8 ++++---- src/base/single/editor/editor.textarea.js | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bi/base.js b/bi/base.js index cace48d53..a87574fc0 100644 --- a/bi/base.js +++ b/bi/base.js @@ -18487,10 +18487,10 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { return this.style; }, - setValid: function (b) { - BI.TextAreaEditor.superclass.setValid.apply(this, arguments); - this.content.setValid(b); - this.watermark && this.watermark.setValid(b); + _setValid: function (b) { + BI.TextAreaEditor.superclass._setValid.apply(this, arguments); + // this.content.setValid(b); + // this.watermark && this.watermark.setValid(b); } }); BI.TextAreaEditor.EVENT_CHANGE = "EVENT_CHANGE"; diff --git a/docs/base.js b/docs/base.js index cace48d53..a87574fc0 100644 --- a/docs/base.js +++ b/docs/base.js @@ -18487,10 +18487,10 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { return this.style; }, - setValid: function (b) { - BI.TextAreaEditor.superclass.setValid.apply(this, arguments); - this.content.setValid(b); - this.watermark && this.watermark.setValid(b); + _setValid: function (b) { + BI.TextAreaEditor.superclass._setValid.apply(this, arguments); + // this.content.setValid(b); + // this.watermark && this.watermark.setValid(b); } }); BI.TextAreaEditor.EVENT_CHANGE = "EVENT_CHANGE"; diff --git a/src/base/single/editor/editor.textarea.js b/src/base/single/editor/editor.textarea.js index 15c6bc7a1..97d94290c 100644 --- a/src/base/single/editor/editor.textarea.js +++ b/src/base/single/editor/editor.textarea.js @@ -149,10 +149,10 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { return this.style; }, - setValid: function (b) { - BI.TextAreaEditor.superclass.setValid.apply(this, arguments); - this.content.setValid(b); - this.watermark && this.watermark.setValid(b); + _setValid: function (b) { + BI.TextAreaEditor.superclass._setValid.apply(this, arguments); + // this.content.setValid(b); + // this.watermark && this.watermark.setValid(b); } }); BI.TextAreaEditor.EVENT_CHANGE = "EVENT_CHANGE";