All files / src/ce ve.ce.AlignableNode.js

100% Statements 10/10
100% Branches 4/4
100% Functions 2/2
100% Lines 10/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47                              1x   35x   35x         1x                       1x   33x   33x 33x 32x 32x      
/*!
 * VisualEditor ContentEditable AlignableNode class.
 *
 * @copyright See AUTHORS.txt
 */
 
/**
 * ContentEditable Alignable node.
 *
 * @class
 * @abstract
 * @extends ve.ce.ClassAttributeNode
 *
 * @constructor
 */
ve.ce.AlignableNode = function VeCeAlignableNode() {
	// Parent constructor
	ve.ce.AlignableNode.super.apply( this, arguments );
 
	this.align = null;
};
 
/* Inheritance */
 
OO.inheritClass( ve.ce.AlignableNode, ve.ce.ClassAttributeNode );
 
/* Events */
 
/**
 * @event align
 * @param {string} align New alignment
 */
 
/**
 * @inheritdoc
 */
ve.ce.AlignableNode.prototype.updateAttributeClasses = function () {
	// Parent method
	ve.ce.AlignableNode.super.prototype.updateAttributeClasses.apply( this, arguments );
 
	var align = this.model.getAttribute( 'align' );
	if ( align && align !== this.align ) {
		this.emit( 'align', align );
		this.align = align;
	}
};