mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
e0018e8e94
Because we don't use title case in comments Change-Id: I5cdd3241aba0727a3cd5d0ded972ae54abf1efd0
39 lines
866 B
JavaScript
39 lines
866 B
JavaScript
/*!
|
|
* VisualEditor ContentEditable MWHieroNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* ContentEditable MediaWiki hieroglyphics node.
|
|
*
|
|
* @class
|
|
* @extends ve.ce.MWExtensionNode
|
|
*
|
|
* @constructor
|
|
* @param {ve.dm.MWHieroNode} model Model to observe
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ce.MWHieroNode = function VeCeMWHieroNode( model, config ) {
|
|
// Parent constructor
|
|
ve.ce.MWExtensionNode.call( this, model, config );
|
|
|
|
// DOM changes
|
|
this.$.addClass( 've-ce-mwHieroNode' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ce.MWHieroNode, ve.ce.MWExtensionNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ce.MWHieroNode.static.name = 'mwHiero';
|
|
|
|
ve.ce.MWHieroNode.static.tagName = 'div';
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.nodeFactory.register( ve.ce.MWHieroNode );
|