提交 2182d771 编写于 作者: L lang

rebuild 2.2.5

上级 3e2a3d6e
因为 它太大了无法显示 source diff 。你可以改为 查看blob
此差异已折叠。
......@@ -17385,7 +17385,7 @@ define('zrender/zrender', [
function getPrecision(val) {
var e = 1;
var count = 0;
while ((val * e | 0) / e !== val) {
while (Math.round(val * e) / e !== val) {
e *= 10;
count++;
}
......@@ -18877,7 +18877,7 @@ define('zrender/zrender', [
function getPrecision(val) {
var e = 1;
var count = 0;
while ((val * e | 0) / e !== val) {
while (Math.round(val * e) / e !== val) {
e *= 10;
count++;
}
......
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册