mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 23:46:39 +00:00
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
|
/*!
|
||
|
* VisualEditor ContentEditable MWLatexNode class.
|
||
|
*
|
||
|
* An abstract class that has most of the common functionality
|
||
|
* for the different tags in the Math extension.
|
||
|
*
|
||
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* ContentEditable MediaWiki abstract LaTeX node: <math>, <chem>, etc.
|
||
|
*
|
||
|
* @abstract
|
||
|
* @class
|
||
|
* @extends ve.ce.MWInlineExtensionNode
|
||
|
*
|
||
|
* @constructor
|
||
|
* @param {ve.dm.MWLatexNode} model Model to observe
|
||
|
* @param {Object} [config] Configuration options
|
||
|
*/
|
||
|
ve.ce.MWLatexNode = function VeCeMWLatexNode() {
|
||
|
// Parent constructor
|
||
|
ve.ce.MWLatexNode.super.apply( this, arguments );
|
||
|
};
|
||
|
|
||
|
/* Inheritance */
|
||
|
|
||
|
OO.inheritClass( ve.ce.MWLatexNode, ve.ce.MWInlineExtensionNode );
|
||
|
|
||
|
/* Methods */
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
ve.ce.MWLatexNode.prototype.onSetup = function () {
|
||
|
// Parent method
|
||
|
ve.ce.MWLatexNode.super.prototype.onSetup.call( this );
|
||
|
|
||
|
// DOM changes
|
||
|
this.$element.addClass( 've-ce-mwLatexNode' );
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc ve.ce.GeneratedContentNode
|
||
|
*/
|
||
|
ve.ce.MWLatexNode.prototype.validateGeneratedContents = function ( $element ) {
|
||
|
return !( $element.find( '.error' ).addBack( '.error' ).length );
|
||
|
};
|