mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
e0de881a8a
JSHint and various git tools complain about this, so let's just do away with them altogether Change-Id: I731866bd21f1ee0088fb0a71df3abf92692aca23
51 lines
968 B
JavaScript
51 lines
968 B
JavaScript
/**
|
|
* ContentEditable node for a document.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.ce.BranchNode}
|
|
* @param model {ve.dm.DocumentNode} Model to observe
|
|
*/
|
|
ve.ce.DocumentNode = function( model ) {
|
|
// Inheritance
|
|
ve.ce.BranchNode.call( this, 'document', model );
|
|
|
|
// DOM Changes
|
|
this.$.addClass( 've-ce-documentNode' );
|
|
this.$.attr('contentEditable', 'true');
|
|
this.$.attr('spellcheck', 'true');
|
|
};
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* Node rules.
|
|
*
|
|
* @see ve.ce.NodeFactory
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.ce.DocumentNode.rules = {
|
|
'canBeSplit': false
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Gets the outer length, which for a document node is the same as the inner length.
|
|
*
|
|
* @method
|
|
* @returns {Integer} Length of the entire node
|
|
*/
|
|
ve.ce.DocumentNode.prototype.getOuterLength = function() {
|
|
return this.length;
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.factory.register( 'document', ve.ce.DocumentNode );
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.ce.DocumentNode, ve.ce.BranchNode );
|