mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
f9864e9288
This isn't as simple as just dropping applyToAppendedContent = false on LinkAnnotation, because browsers differ in their continuation behavior. Firefox continues links, but Chrome doesn't. To work around this, add a property indicating that the annotation needs its continuation behavior to be forced. Rename areAnnotationsCorrect() to needsPawn() accordingly. Bug: 49931 Change-Id: Id6424af89c92bba2be87736e8a937e0f2067c007
41 lines
972 B
JavaScript
41 lines
972 B
JavaScript
/*!
|
|
* VisualEditor ContentEditable LinkAnnotation class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* ContentEditable link annotation.
|
|
*
|
|
* @class
|
|
* @extends ve.ce.Annotation
|
|
* @constructor
|
|
* @param {ve.dm.LinkAnnotation} model Model to observe
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ce.LinkAnnotation = function VeCeLinkAnnotation( model, config ) {
|
|
// Parent constructor
|
|
ve.ce.Annotation.call( this, model, config );
|
|
|
|
// DOM changes
|
|
this.$.addClass( 've-ce-LinkAnnotation' );
|
|
this.$.attr( 'href', model.getAttribute( 'href' ) );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ce.LinkAnnotation, ve.ce.Annotation );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ce.LinkAnnotation.static.name = 'link';
|
|
|
|
ve.ce.LinkAnnotation.static.tagName = 'a';
|
|
|
|
ve.ce.LinkAnnotation.static.forceContinuation = true;
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.annotationFactory.register( ve.ce.LinkAnnotation );
|