mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 14:33:59 +00:00
Merge "Introduce method ve.ce.Document.getRelativeOffset."
This commit is contained in:
commit
e45df0df11
|
@ -99,7 +99,7 @@ ve.ce.Document.prototype.getSiblingWordBoundary = function ( offset, direction )
|
|||
config = direction > 0 ? config.right : config.left;
|
||||
|
||||
if ( !data[i] || data[i].type !== undefined ) {
|
||||
return -1;
|
||||
return this.model.getRelativeContentOffset( offset, direction );
|
||||
} else {
|
||||
prevChar = typeof data[i] === 'string' ? data[i] : data[i][0];
|
||||
if ( !pattern.test( prevChar ) ) {
|
||||
|
@ -135,3 +135,21 @@ ve.ce.Document.prototype.getSiblingWordBoundary = function ( offset, direction )
|
|||
return i + ( inc > 0 ? 0 : 1 );
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Get the relative word or character boundary.
|
||||
*
|
||||
* @method
|
||||
* @param {number} offset Offset to start from
|
||||
* @param {number} [direction] Direction to prefer matching offset in, -1 for left and 1 for right
|
||||
* @param {string} [unit] Unit [word|character]
|
||||
* @returns {number} Relative offset
|
||||
*/
|
||||
ve.ce.Document.prototype.getRelativeOffset = function ( offset, direction, unit ) {
|
||||
if ( unit === 'word' ) { // word
|
||||
return this.getSiblingWordBoundary( offset, direction );
|
||||
} else { // character
|
||||
// TODO: add support for slugs
|
||||
return this.model.getRelativeContentOffset( offset, direction );
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue