mirror of
https://github.com/konvajs/konva.git
synced 2025-06-28 15:23:44 +08:00
fix function name
This commit is contained in:
parent
77b51bb587
commit
04222bfe93
2
konva.js
2
konva.js
@ -15509,7 +15509,7 @@
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
line = line.slice(low);
|
line = line.slice(low);
|
||||||
line = line.trimStart();
|
line = line.trimLeft();
|
||||||
if (line.length > 0) {
|
if (line.length > 0) {
|
||||||
// Check if the remaining text would fit on one line
|
// Check if the remaining text would fit on one line
|
||||||
lineWidth = this._getTextWidth(line);
|
lineWidth = this._getTextWidth(line);
|
||||||
|
2
konva.min.js
vendored
2
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -456,7 +456,7 @@
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
line = line.slice(low);
|
line = line.slice(low);
|
||||||
line = line.trimStart();
|
line = line.trimLeft();
|
||||||
if (line.length > 0) {
|
if (line.length > 0) {
|
||||||
// Check if the remaining text would fit on one line
|
// Check if the remaining text would fit on one line
|
||||||
lineWidth = this._getTextWidth(line);
|
lineWidth = this._getTextWidth(line);
|
||||||
|
Loading…
Reference in New Issue
Block a user