2013-08-03 14:41:22 +00:00
|
|
|
/*!
|
|
|
|
* 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
|
2013-09-25 10:21:09 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
2013-08-03 14:41:22 +00:00
|
|
|
*/
|
|
|
|
ve.ce.MWHieroNode = function VeCeMWHieroNode( model, config ) {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ce.MWExtensionNode.call( this, model, config );
|
|
|
|
|
2013-08-28 22:55:35 +00:00
|
|
|
// DOM changes
|
2013-08-03 14:41:22 +00:00
|
|
|
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 );
|