提交 13117571 编写于 作者: K kener

数据阴影长度计算bug fixed

上级 4fbbe43e
......@@ -358,8 +358,8 @@ define(function (require) {
}
var pointList = [];
var x = _location.width / maxLength;
var y = _location.height / maxLength;
var x = _location.width / (maxLength - (maxLength > 1 ? 1 : 0));
var y = _location.height / (maxLength - (maxLength > 1 ? 1 : 0));
for (var i = 0, l = maxLength; i < l; i++) {
value = typeof data[i] != 'undefined'
? (typeof data[i].value != 'undefined'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册