mediawiki-extensions-Visual.../modules/ve/ce/ve.ce.LeafNode.js
Timo Tijhof 08610a4ecb doc: Clean up spacing that caused <pre> or broken <ul>/<ol>
Whenever there is more than 2 spaces (except the extra space
on a continued line of an @ tag, or the extra space on a
continued line of a list item) it causes a <pre> context.

Removed both spurious spaces that caused a <pre> and ones that
didn't but looked like it could.

When making an ordered or unordered list, the first item needs
to be on a new line and in block context (e.g. an empty line
before it). Otherwise it is rendered inline as 1. Foo 2. Bar
(such as in #rebuildNodes where both the ordered and unordered
lists were broken).

Change-Id: Id0f154854afbdc8e5a8387da92e6b2cdf0875f69
2013-07-25 04:02:50 +02:00

77 lines
1.9 KiB
JavaScript

/*!
* VisualEditor ContentEditable LeafNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable leaf node.
*
* Leaf nodes can not have any children.
*
* @abstract
* @extends ve.ce.Node
* @mixins ve.LeafNode
*
* @constructor
* @param {ve.dm.LeafNode} model Model to observe
* @param {Object} [config] Config options
*/
ve.ce.LeafNode = function VeCeLeafNode( model, config ) {
// Mixin constructor
ve.LeafNode.call( this );
// Parent constructor
ve.ce.Node.call( this, model, config );
// DOM Changes
if ( model.isWrapped() ) {
this.$.addClass( 've-ce-leafNode' );
}
};
/* Inheritance */
ve.inheritClass( ve.ce.LeafNode, ve.ce.Node );
ve.mixinClass( ve.ce.LeafNode, ve.LeafNode );
/* Static Properties */
ve.ce.LeafNode.static.tagName = 'span';
/* Methods */
ve.ce.LeafNode.prototype.onSetup = function () {
ve.ce.Node.prototype.onSetup.call( this );
this.$.addClass( 've-ce-leafNode' );
};
ve.ce.LeafNode.prototype.onTeardown = function () {
ve.ce.Node.prototype.onTeardown.call( this );
this.$.removeClass( 've-ce-leafNode' );
};
/**
* Get annotated HTML fragments.
*
* @see ve.ce.ContentBranchNode
*
* An HTML fragment can be:
* - a plain text string
* - a jQuery object
* - an array with a plain text string or jQuery object at index 0 and a ve.dm.AnnotationSet at index 1,
* i.e. ['textstring', ve.dm.AnnotationSet] or [$jQueryObj, ve.dm.AnnotationSet]
*
* The default implementation should be fine in most cases. A subclass only needs to override this
* if the annotations aren't necessarily the same across the entire node (like in ve.ce.TextNode).
*
* @method
* @returns {Array} Array of HTML fragments, i.e.
* [ string | jQuery | [string|jQuery, ve.dm.AnnotationSet] ]
*/
ve.ce.LeafNode.prototype.getAnnotatedHtml = function () {
return [ [ this.$, this.getModel().getAnnotations() ] ];
};