Fix showCursorAt method - missing "break;"

This commit is contained in:
Inez Korczynski 2012-02-10 05:39:28 +00:00
parent 63224918c7
commit acd819b28b
Notes: Gabriel Wicke 2012-02-27 16:40:01 +00:00

View file

@ -272,6 +272,7 @@ ve.es.Surface.prototype.showCursorAt = function( offset ) {
if ( offset >= index && offset <= index + length ) {
node = item;
localOffset = offset - index;
break;
} else {
index += length;
}