mediawiki-extensions-Visual.../modules/ve-mw/ce/nodes/ve.ce.MWHieroNode.js
Roan Kattouw cedca2490c Actually actually fix double-clicking on hieroglyphics nodes
Bug: 63651
Change-Id: Ib97d202b43e6910a3e223d14031c33a95ca7a251
2014-04-07 14:45:18 -07:00

41 lines
936 B
JavaScript

/*!
* VisualEditor ContentEditable MWHieroNode class.
*
* @copyright 2011-2014 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] Configuration options
*/
ve.ce.MWHieroNode = function VeCeMWHieroNode( model, config ) {
// Parent constructor
ve.ce.MWExtensionNode.call( this, model, config );
// DOM changes
this.$element.addClass( 've-ce-mwHieroNode' );
};
/* Inheritance */
OO.inheritClass( ve.ce.MWHieroNode, ve.ce.MWExtensionNode );
/* Static Properties */
ve.ce.MWHieroNode.static.name = 'mwHiero';
ve.ce.MWHieroNode.static.tagName = 'div';
ve.ce.MWHieroNode.static.primaryCommandName = 'hiero';
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWHieroNode );