mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
36 lines
937 B
JavaScript
36 lines
937 B
JavaScript
|
/*!
|
||
|
* VisualEditor ContentEditable MWExternalLinkAnnotation class.
|
||
|
*
|
||
|
* @copyright 2011-2013 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
|
||
|
*/
|
||
|
ve.ce.MWExternalLinkAnnotation = function VeCeMWExternalLinkAnnotation( model ) {
|
||
|
// Parent constructor
|
||
|
ve.ce.LinkAnnotation.call( this, model );
|
||
|
|
||
|
// DOM changes
|
||
|
this.$.addClass( 've-ce-MWExternalLinkAnnotation' );
|
||
|
this.$.attr( 'title', model.getAttribute( 'href' ) );
|
||
|
};
|
||
|
|
||
|
/* Inheritance */
|
||
|
|
||
|
ve.inheritClass( ve.ce.MWExternalLinkAnnotation, ve.ce.LinkAnnotation );
|
||
|
|
||
|
/* Static Properties */
|
||
|
|
||
|
ve.ce.MWExternalLinkAnnotation.static.name = 'link/MWexternal';
|
||
|
|
||
|
/* Registration */
|
||
|
|
||
|
ve.ce.annotationFactory.register( ve.ce.MWExternalLinkAnnotation );
|