mediawiki-extensions-Visual.../modules/ve-mw/ce/nodes/ve.ce.MWInlineExtensionNode.js
James D. Forrester 3c293ea00c doc: Bump copyright year for 2019
Change-Id: I8991b97c980d4149f53eb5601036220ef3c0c440
2019-01-01 13:24:23 +00:00

43 lines
1.1 KiB
JavaScript

/*!
* VisualEditor ContentEditable MWInlineExtensionNode class.
*
* @copyright 2011-2019 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable MediaWiki inline extension node.
*
* @class
* @abstract
* @extends ve.ce.MWExtensionNode
*
* @constructor
* @param {ve.dm.MWInlineExtensionNode} model Model to observe
* @param {Object} [config] Configuration options
*/
ve.ce.MWInlineExtensionNode = function VeCeMWInlineExtensionNode() {
// Parent constructor
ve.ce.MWInlineExtensionNode.super.apply( this, arguments );
};
/* Inheritance */
OO.inheritClass( ve.ce.MWInlineExtensionNode, ve.ce.MWExtensionNode );
/* Methods */
/**
* @inheritdoc
*/
ve.ce.MWInlineExtensionNode.prototype.onParseSuccess = function ( deferred, response ) {
var data = response.visualeditor,
contentNodes = $.parseHTML( data.content );
// Inline nodes may come back in a wrapper paragraph; in that case, unwrap it
if ( contentNodes.length === 1 && contentNodes[ 0 ].nodeName === 'P' ) {
contentNodes = Array.prototype.slice.apply( contentNodes[ 0 ].childNodes );
}
deferred.resolve( contentNodes );
};