mediawiki-extensions-Visual.../modules/ve-mw/ce/annotations/ve.ce.MWExternalLinkAnnotation.js
Ed Sanders c451656d6d Remove redundant setting of title in link nodes
Also cleanup redundant overrides, documentation and
unused messages.

Depends on If22a5197 in core.

Change-Id: I533235f4eb5d703783a8fb45dff5e7be465f4ebb
2014-07-30 10:32:49 +01:00

37 lines
1 KiB
JavaScript

/*!
* VisualEditor ContentEditable MWExternalLinkAnnotation class.
*
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable MediaWiki external link annotation.
*
* @class
* @extends ve.ce.LinkAnnotation
* @constructor
* @param {ve.dm.MWExternalLinkAnnotation} model Model to observe
* @param {ve.ce.ContentBranchNode} [parentNode] Node rendering this annotation
* @param {Object} [config] Configuration options
*/
ve.ce.MWExternalLinkAnnotation = function VeCeMWExternalLinkAnnotation( model, parentNode, config ) {
// Parent constructor
ve.ce.LinkAnnotation.call( this, model, parentNode, config );
// DOM changes
this.$element.addClass( 'external' );
};
/* Inheritance */
OO.inheritClass( ve.ce.MWExternalLinkAnnotation, ve.ce.LinkAnnotation );
/* Static Properties */
ve.ce.MWExternalLinkAnnotation.static.name = 'link/mwExternal';
/* Registration */
ve.ce.annotationFactory.register( ve.ce.MWExternalLinkAnnotation );