Merge pull request #7262 from yurydelendik/issue7231
Fixes weird loop in the bidi.js.
This commit is contained in:
commit
bd49973ee5
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@
|
||||||
types[j] = 'EN';
|
types[j] = 'EN';
|
||||||
}
|
}
|
||||||
// do after
|
// do after
|
||||||
for (j = i + 1; j < strLength; --j) {
|
for (j = i + 1; j < strLength; ++j) {
|
||||||
if (types[j] !== 'ET') {
|
if (types[j] !== 'ET') {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue