Merge pull request #5133 from guoyunhe/patch-1

bbcode find close tag loop end condition
This commit is contained in:
Arpit Jalan 2017-09-08 00:04:30 +05:30 committed by GitHub
commit a9737e2813
1 changed files with 1 additions and 1 deletions

View File

@ -178,8 +178,8 @@ function findInlineCloseTag(state, openTag, start, max) {
closeTag = null;
} else {
closeTag.start = j;
break;
}
break;
}
}
}