mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 14:12:53 +00:00
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 );
|