From 6d8b582837d5ea95c52f60a5182b94625b07028d Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Wed, 18 Apr 2018 17:16:34 +0800 Subject: [PATCH] update --- dist/base.js | 2 +- dist/bundle.js | 2 +- src/base/single/editor/editor.code.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/base.js b/dist/base.js index 1a12a240a..0be080b54 100644 --- a/dist/base.js +++ b/dist/base.js @@ -18187,7 +18187,7 @@ BI.CodeEditor = BI.inherit(BI.Single, { } if (BI.isNotNull(o.style)) { - self.setStyle(o.style); + this.setStyle(o.style); } }, diff --git a/dist/bundle.js b/dist/bundle.js index 61c3cc1c9..e1b5f1376 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -53935,7 +53935,7 @@ BI.CodeEditor = BI.inherit(BI.Single, { } if (BI.isNotNull(o.style)) { - self.setStyle(o.style); + this.setStyle(o.style); } }, diff --git a/src/base/single/editor/editor.code.js b/src/base/single/editor/editor.code.js index 4a6b97cb9..8860f4688 100644 --- a/src/base/single/editor/editor.code.js +++ b/src/base/single/editor/editor.code.js @@ -96,7 +96,7 @@ BI.CodeEditor = BI.inherit(BI.Single, { } if (BI.isNotNull(o.style)) { - self.setStyle(o.style); + this.setStyle(o.style); } },