diff --git a/bi/case.js b/bi/case.js index 139a0e831..cdf0cbe36 100644 --- a/bi/case.js +++ b/bi/case.js @@ -6752,7 +6752,7 @@ BI.TextEditor = BI.inherit(BI.Single, { self.fireEvent(BI.TextEditor.EVENT_STOP); }); this.editor.on(BI.Editor.EVENT_ERROR, function () { - self.fireEvent(BI.TextEditor.EVENT_ERROR); + self.fireEvent(BI.TextEditor.EVENT_ERROR, arguments); }); this.editor.on(BI.Editor.EVENT_ENTER, function () { self.fireEvent(BI.TextEditor.EVENT_ENTER); diff --git a/docs/case.js b/docs/case.js index 139a0e831..cdf0cbe36 100644 --- a/docs/case.js +++ b/docs/case.js @@ -6752,7 +6752,7 @@ BI.TextEditor = BI.inherit(BI.Single, { self.fireEvent(BI.TextEditor.EVENT_STOP); }); this.editor.on(BI.Editor.EVENT_ERROR, function () { - self.fireEvent(BI.TextEditor.EVENT_ERROR); + self.fireEvent(BI.TextEditor.EVENT_ERROR, arguments); }); this.editor.on(BI.Editor.EVENT_ENTER, function () { self.fireEvent(BI.TextEditor.EVENT_ENTER); diff --git a/src/case/editor/editor.text.js b/src/case/editor/editor.text.js index 4d8abd7d3..4a6194c93 100644 --- a/src/case/editor/editor.text.js +++ b/src/case/editor/editor.text.js @@ -96,7 +96,7 @@ BI.TextEditor = BI.inherit(BI.Single, { self.fireEvent(BI.TextEditor.EVENT_STOP); }); this.editor.on(BI.Editor.EVENT_ERROR, function () { - self.fireEvent(BI.TextEditor.EVENT_ERROR); + self.fireEvent(BI.TextEditor.EVENT_ERROR, arguments); }); this.editor.on(BI.Editor.EVENT_ENTER, function () { self.fireEvent(BI.TextEditor.EVENT_ENTER);