guy 6 years ago
parent
commit
6e81a6cb13
  1. 4
      dist/_fineui.min.js
  2. 4
      dist/bundle.js
  3. 4
      dist/bundle.min.js
  4. 4
      dist/core.js
  5. 4
      dist/fineui.js
  6. 4
      dist/fineui.min.js
  7. 4
      dist/utils.js
  8. 2
      dist/utils.min.js
  9. 4
      src/core/alias.js

4
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -25696,7 +25696,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
var e = fmt.indexOf("E");
var eleft = fmt.substr(0, e), eright = fmt.substr(e + 1);
if (/^[0\.-]+$/.test(text)) {
text = BI._numberFormat(0.0, eleft) + "E" + BI._numberFormat(0, eright);
text = _numberFormat(0.0, eleft) + "E" + _numberFormat(0, eright);
} else {
var isNegative = text < 0;
if (isNegative) {
@ -25730,7 +25730,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
if (right < 0 && eright.indexOf("-") < 0) {
eright += ";-" + eright;
}
text = BI._numberFormat(left, eleft) + "E" + BI._numberFormat(right, eright);
text = _numberFormat(left, eleft) + "E" + _numberFormat(right, eright);
if (isNegative) {
text = "-" + text;
}

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/core.js vendored

@ -25696,7 +25696,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
var e = fmt.indexOf("E");
var eleft = fmt.substr(0, e), eright = fmt.substr(e + 1);
if (/^[0\.-]+$/.test(text)) {
text = BI._numberFormat(0.0, eleft) + "E" + BI._numberFormat(0, eright);
text = _numberFormat(0.0, eleft) + "E" + _numberFormat(0, eright);
} else {
var isNegative = text < 0;
if (isNegative) {
@ -25730,7 +25730,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
if (right < 0 && eright.indexOf("-") < 0) {
eright += ";-" + eright;
}
text = BI._numberFormat(left, eleft) + "E" + BI._numberFormat(right, eright);
text = _numberFormat(left, eleft) + "E" + _numberFormat(right, eright);
if (isNegative) {
text = "-" + text;
}

4
dist/fineui.js vendored

@ -25945,7 +25945,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
var e = fmt.indexOf("E");
var eleft = fmt.substr(0, e), eright = fmt.substr(e + 1);
if (/^[0\.-]+$/.test(text)) {
text = BI._numberFormat(0.0, eleft) + "E" + BI._numberFormat(0, eright);
text = _numberFormat(0.0, eleft) + "E" + _numberFormat(0, eright);
} else {
var isNegative = text < 0;
if (isNegative) {
@ -25979,7 +25979,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
if (right < 0 && eright.indexOf("-") < 0) {
eright += ";-" + eright;
}
text = BI._numberFormat(left, eleft) + "E" + BI._numberFormat(right, eright);
text = _numberFormat(left, eleft) + "E" + _numberFormat(right, eright);
if (isNegative) {
text = "-" + text;
}

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/utils.js vendored

@ -12493,7 +12493,7 @@ _.extend(BI.OB.prototype, {
var e = fmt.indexOf("E");
var eleft = fmt.substr(0, e), eright = fmt.substr(e + 1);
if (/^[0\.-]+$/.test(text)) {
text = BI._numberFormat(0.0, eleft) + "E" + BI._numberFormat(0, eright);
text = _numberFormat(0.0, eleft) + "E" + _numberFormat(0, eright);
} else {
var isNegative = text < 0;
if (isNegative) {
@ -12527,7 +12527,7 @@ _.extend(BI.OB.prototype, {
if (right < 0 && eright.indexOf("-") < 0) {
eright += ";-" + eright;
}
text = BI._numberFormat(left, eleft) + "E" + BI._numberFormat(right, eright);
text = _numberFormat(left, eleft) + "E" + _numberFormat(right, eright);
if (isNegative) {
text = "-" + text;
}

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

4
src/core/alias.js

@ -21,7 +21,7 @@
var e = fmt.indexOf("E");
var eleft = fmt.substr(0, e), eright = fmt.substr(e + 1);
if (/^[0\.-]+$/.test(text)) {
text = BI._numberFormat(0.0, eleft) + "E" + BI._numberFormat(0, eright);
text = _numberFormat(0.0, eleft) + "E" + _numberFormat(0, eright);
} else {
var isNegative = text < 0;
if (isNegative) {
@ -55,7 +55,7 @@
if (right < 0 && eright.indexOf("-") < 0) {
eright += ";-" + eright;
}
text = BI._numberFormat(left, eleft) + "E" + BI._numberFormat(right, eright);
text = _numberFormat(left, eleft) + "E" + _numberFormat(right, eright);
if (isNegative) {
text = "-" + text;
}

Loading…
Cancel
Save