diff --git a/index.html b/index.html index 53373f0e2..b7a7bb2a4 100644 --- a/index.html +++ b/index.html @@ -11,4 +11,5 @@
- \ No newline at end of file + + diff --git a/src/base/single/editor/editor.js b/src/base/single/editor/editor.js index 8fbd987a3..6bff9decf 100644 --- a/src/base/single/editor/editor.js +++ b/src/base/single/editor/editor.js @@ -175,7 +175,7 @@ BI.Editor = BI.inherit(BI.Single, { errorText = errorText(this.editor.getValue()); } if (BI.isKey(errorText)) { - if (!this.isEnabled() || this.isValid() || (BI.Bubbles.has(this.getName()) && BI.Bubbles.get(this.getName()).isVisible())) { + if (!this.isEnabled() || this.isValid() || BI.Bubbles.has(this.getName())) { this.setTitle(""); } else { this.setTitle(errorText); @@ -273,7 +273,6 @@ BI.Editor = BI.inherit(BI.Single, { adjustYOffset: 2 }); this._checkToolTip(); - return BI.Bubbles.get(this.getName()); } }, diff --git a/src/base/single/editor/editor.textarea.js b/src/base/single/editor/editor.textarea.js index 65c0b22e9..177f33b26 100644 --- a/src/base/single/editor/editor.textarea.js +++ b/src/base/single/editor/editor.textarea.js @@ -184,7 +184,6 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { adjustXOffset: o.adjustXOffset, offsetStyle: o.offsetStyle, }); - return BI.Bubbles.get(this.getName()); } },