Browse Source

BI-28985

es6
windy 6 years ago
parent
commit
2297e79ea2
  1. 14
      dist/_fineui.min.js
  2. 3
      dist/bundle.js
  3. 14
      dist/bundle.min.js
  4. 3
      dist/core.js
  5. 3
      dist/fineui.js
  6. 14
      dist/fineui.min.js
  7. 3
      src/core/func/function.js

14
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/bundle.js vendored

@ -28836,11 +28836,12 @@ BI.extend(BI.DOM, {
ctx.fillText(param, 6 * ratio, 12 * ratio);
$(canvas).destroy();
var backColor = backgroundColor || "#EAF2FD";
// IE可以放大缩小所以要固定最大最小宽高
return {
width: w,
height: 24,
src: canvas.toDataURL("image/png"),
style: "background-color: " + backColor + ";vertical-align: middle; margin: 0 3px; width:" + w + "px;height: 24px",
style: "background-color: " + backColor + ";vertical-align: middle; margin: 0 3px; width:" + w + "px;height: 24px; max-width:" + w + "px;max-height: 24px; min-width:" + w + "px;min-height: 24px",
param: param
};
}

14
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/core.js vendored

@ -28836,11 +28836,12 @@ BI.extend(BI.DOM, {
ctx.fillText(param, 6 * ratio, 12 * ratio);
$(canvas).destroy();
var backColor = backgroundColor || "#EAF2FD";
// IE可以放大缩小所以要固定最大最小宽高
return {
width: w,
height: 24,
src: canvas.toDataURL("image/png"),
style: "background-color: " + backColor + ";vertical-align: middle; margin: 0 3px; width:" + w + "px;height: 24px",
style: "background-color: " + backColor + ";vertical-align: middle; margin: 0 3px; width:" + w + "px;height: 24px; max-width:" + w + "px;max-height: 24px; min-width:" + w + "px;min-height: 24px",
param: param
};
}

3
dist/fineui.js vendored

@ -29057,11 +29057,12 @@ BI.extend(BI.DOM, {
ctx.fillText(param, 6 * ratio, 12 * ratio);
$(canvas).destroy();
var backColor = backgroundColor || "#EAF2FD";
// IE可以放大缩小所以要固定最大最小宽高
return {
width: w,
height: 24,
src: canvas.toDataURL("image/png"),
style: "background-color: " + backColor + ";vertical-align: middle; margin: 0 3px; width:" + w + "px;height: 24px",
style: "background-color: " + backColor + ";vertical-align: middle; margin: 0 3px; width:" + w + "px;height: 24px; max-width:" + w + "px;max-height: 24px; min-width:" + w + "px;min-height: 24px",
param: param
};
}

14
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
src/core/func/function.js

@ -315,11 +315,12 @@ BI.extend(BI.DOM, {
ctx.fillText(param, 6 * ratio, 12 * ratio);
$(canvas).destroy();
var backColor = backgroundColor || "#EAF2FD";
// IE可以放大缩小所以要固定最大最小宽高
return {
width: w,
height: 24,
src: canvas.toDataURL("image/png"),
style: "background-color: " + backColor + ";vertical-align: middle; margin: 0 3px; width:" + w + "px;height: 24px",
style: "background-color: " + backColor + ";vertical-align: middle; margin: 0 3px; width:" + w + "px;height: 24px; max-width:" + w + "px;max-height: 24px; min-width:" + w + "px;min-height: 24px",
param: param
};
}

Loading…
Cancel
Save