mediawiki-extensions-Syntax.../modules/ve-syntaxhighlight/ve.ce.MWInlineSyntaxHighlightNode.js
Ed Sanders c09c3ed190 Use language as node description
No point using body as that is already visible.

Change-Id: I3425ae4712ccc820ba736ee605524abbc35aecc4
2019-07-31 16:41:15 +01:00

39 lines
1.1 KiB
JavaScript

/*!
* VisualEditor ContentEditable MWInlineSyntaxHighlightNode class.
*
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable MediaWiki inline syntax highlight node.
*
* @class
* @abstract
*
* @constructor
*/
ve.ce.MWInlineSyntaxHighlightNode = function VeCeMWInlineSyntaxHighlightNode() {
// Parent method
ve.ce.MWInlineExtensionNode.super.apply( this, arguments );
// Mixin method
ve.ce.MWSyntaxHighlightNode.call( this );
};
OO.inheritClass( ve.ce.MWInlineSyntaxHighlightNode, ve.ce.MWInlineExtensionNode );
OO.mixinClass( ve.ce.MWInlineSyntaxHighlightNode, ve.ce.MWSyntaxHighlightNode );
ve.ce.MWInlineSyntaxHighlightNode.static.name = 'mwInlineSyntaxHighlight';
ve.ce.MWInlineSyntaxHighlightNode.static.primaryCommandName = 'syntaxhighlightInspector';
ve.ce.MWInlineSyntaxHighlightNode.static.getDescription = function ( model ) {
return ve.getProp( model.getAttribute( 'mw' ), 'attrs', 'lang' );
};
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWInlineSyntaxHighlightNode );