All files / src/ui/commands ve.ui.ClearAnnotationCommand.js

83.33% Statements 5/6
0% Branches 0/2
50% Functions 1/2
83.33% Lines 5/6

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                            1x   1x               1x             1x               1x  
/*!
 * VisualEditor UserInterface ClearAnnotationCommand class.
 *
 * @copyright See AUTHORS.txt
 */
 
/**
 * UserInterface clear all annotations command.
 *
 * @class
 * @extends ve.ui.Command
 *
 * @constructor
 */
ve.ui.ClearAnnotationCommand = function VeUiClearAnnotationCommand() {
	// Parent constructor
	ve.ui.ClearAnnotationCommand.super.call(
		this, 'clear', 'annotation', 'clearAll',
		{ supportedSelections: [ 'linear', 'table' ] }
	);
};
 
/* Inheritance */
 
OO.inheritClass( ve.ui.ClearAnnotationCommand, ve.ui.Command );
 
/* Methods */
 
/**
 * @inheritdoc
 */
ve.ui.ClearAnnotationCommand.prototype.isExecutable = function ( fragment ) {
	// Parent method
	return ve.ui.ClearAnnotationCommand.super.prototype.isExecutable.apply( this, arguments ) &&
		fragment.hasAnnotations();
};
 
/* Registration */
 
ve.ui.commandRegistry.register( new ve.ui.ClearAnnotationCommand() );