Browse Source

textContent IE问题修复

es6
dailer 5 years ago
parent
commit
51fac54a00
  1. 3
      dist/2.0/fineui.ie.js
  2. 4
      dist/2.0/fineui.ie.min.js
  3. 3
      dist/2.0/fineui.js
  4. 8
      dist/2.0/fineui.min.js
  5. 3
      dist/base.js
  6. 3
      dist/bundle.ie.js
  7. 4
      dist/bundle.ie.min.js
  8. 3
      dist/bundle.js
  9. 8
      dist/bundle.min.js
  10. 3
      dist/fineui.ie.js
  11. 4
      dist/fineui.ie.min.js
  12. 3
      dist/fineui.js
  13. 8
      dist/fineui.min.js
  14. 3
      dist/fineui_without_jquery_polyfill.js
  15. 2
      dist/utils.min.js
  16. 3
      src/base/single/text.js

3
dist/2.0/fineui.ie.js vendored

@ -36148,7 +36148,8 @@ BI.Text = BI.inherit(BI.Single, {
setText: function (text) {
BI.Text.superclass.setText.apply(this, arguments);
this.options.text = text;
// 为textContext赋值为undefined时在ie和edge下会真的显示undefined
this.options.text = BI.isNotNull(text) ? text : "";
if (BI.isIE9Below()) {
this.text.element.html(BI.htmlEncode(this._getShowText()));
return;

4
dist/2.0/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/2.0/fineui.js vendored

@ -36552,7 +36552,8 @@ BI.Text = BI.inherit(BI.Single, {
setText: function (text) {
BI.Text.superclass.setText.apply(this, arguments);
this.options.text = text;
// 为textContext赋值为undefined时在ie和edge下会真的显示undefined
this.options.text = BI.isNotNull(text) ? text : "";
if (BI.isIE9Below()) {
this.text.element.html(BI.htmlEncode(this._getShowText()));
return;

8
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/base.js vendored

@ -659,7 +659,8 @@ BI.Text = BI.inherit(BI.Single, {
setText: function (text) {
BI.Text.superclass.setText.apply(this, arguments);
this.options.text = text;
// 为textContext赋值为undefined时在ie和edge下会真的显示undefined
this.options.text = BI.isNotNull(text) ? text : "";
if (BI.isIE9Below()) {
this.text.element.html(BI.htmlEncode(this._getShowText()));
return;

3
dist/bundle.ie.js vendored

@ -36148,7 +36148,8 @@ BI.Text = BI.inherit(BI.Single, {
setText: function (text) {
BI.Text.superclass.setText.apply(this, arguments);
this.options.text = text;
// 为textContext赋值为undefined时在ie和edge下会真的显示undefined
this.options.text = BI.isNotNull(text) ? text : "";
if (BI.isIE9Below()) {
this.text.element.html(BI.htmlEncode(this._getShowText()));
return;

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/bundle.js vendored

@ -36552,7 +36552,8 @@ BI.Text = BI.inherit(BI.Single, {
setText: function (text) {
BI.Text.superclass.setText.apply(this, arguments);
this.options.text = text;
// 为textContext赋值为undefined时在ie和edge下会真的显示undefined
this.options.text = BI.isNotNull(text) ? text : "";
if (BI.isIE9Below()) {
this.text.element.html(BI.htmlEncode(this._getShowText()));
return;

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/fineui.ie.js vendored

@ -36393,7 +36393,8 @@ BI.Text = BI.inherit(BI.Single, {
setText: function (text) {
BI.Text.superclass.setText.apply(this, arguments);
this.options.text = text;
// 为textContext赋值为undefined时在ie和edge下会真的显示undefined
this.options.text = BI.isNotNull(text) ? text : "";
if (BI.isIE9Below()) {
this.text.element.html(BI.htmlEncode(this._getShowText()));
return;

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/fineui.js vendored

@ -36797,7 +36797,8 @@ BI.Text = BI.inherit(BI.Single, {
setText: function (text) {
BI.Text.superclass.setText.apply(this, arguments);
this.options.text = text;
// 为textContext赋值为undefined时在ie和edge下会真的显示undefined
this.options.text = BI.isNotNull(text) ? text : "";
if (BI.isIE9Below()) {
this.text.element.html(BI.htmlEncode(this._getShowText()));
return;

8
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/fineui_without_jquery_polyfill.js vendored

@ -25228,7 +25228,8 @@ BI.Text = BI.inherit(BI.Single, {
setText: function (text) {
BI.Text.superclass.setText.apply(this, arguments);
this.options.text = text;
// 为textContext赋值为undefined时在ie和edge下会真的显示undefined
this.options.text = BI.isNotNull(text) ? text : "";
if (BI.isIE9Below()) {
this.text.element.html(BI.htmlEncode(this._getShowText()));
return;

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

3
src/base/single/text.js

@ -132,7 +132,8 @@ BI.Text = BI.inherit(BI.Single, {
setText: function (text) {
BI.Text.superclass.setText.apply(this, arguments);
this.options.text = text;
// 为textContext赋值为undefined时在ie和edge下会真的显示undefined
this.options.text = BI.isNotNull(text) ? text : "";
if (BI.isIE9Below()) {
this.text.element.html(BI.htmlEncode(this._getShowText()));
return;

Loading…
Cancel
Save