fix function name

This commit is contained in:
Anton Lavrenov 2018-09-24 09:50:41 +03:00
parent 77b51bb587
commit 04222bfe93
3 changed files with 3 additions and 3 deletions

View File

@ -15509,7 +15509,7 @@
break;
}
line = line.slice(low);
line = line.trimStart();
line = line.trimLeft();
if (line.length > 0) {
// Check if the remaining text would fit on one line
lineWidth = this._getTextWidth(line);

2
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -456,7 +456,7 @@
break;
}
line = line.slice(low);
line = line.trimStart();
line = line.trimLeft();
if (line.length > 0) {
// Check if the remaining text would fit on one line
lineWidth = this._getTextWidth(line);