mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
316fdab450
It's been passed in for a while, but nothing ever used it. As we know some browsers don't like it when we create elements in the wrong document, and this ensures we always use the correct document for createElement(). Change-Id: Ia3d2fabe0516956105ad2b5625ed2f76c015c26e
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel ListNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel list node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.BranchNode
|
|
* @constructor
|
|
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
|
|
* @param {Object} [element] Reference to element in linear model
|
|
*/
|
|
ve.dm.ListNode = function VeDmListNode( children, element ) {
|
|
// Parent constructor
|
|
ve.dm.BranchNode.call( this, children, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.ListNode, ve.dm.BranchNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.ListNode.static.name = 'list';
|
|
|
|
ve.dm.ListNode.static.childNodeTypes = [ 'listItem' ];
|
|
|
|
ve.dm.ListNode.static.defaultAttributes = {
|
|
'style': 'bullet'
|
|
};
|
|
|
|
ve.dm.ListNode.static.matchTagNames = [ 'ul', 'ol' ];
|
|
|
|
ve.dm.ListNode.static.toDataElement = function ( domElements ) {
|
|
var style = domElements[0].nodeName.toLowerCase() === 'ol' ? 'number' : 'bullet';
|
|
return { 'type': 'list', 'attributes': { 'style': style } };
|
|
};
|
|
|
|
ve.dm.ListNode.static.toDomElements = function ( dataElement, doc ) {
|
|
var tag = dataElement.attributes && dataElement.attributes.style === 'number' ? 'ol' : 'ul';
|
|
return [ doc.createElement( tag ) ];
|
|
};
|
|
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.ListNode );
|