mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.DocumentNode.js
Trevor Parscal db9f941fa6 Rename this.$ to this.$element, and this.$$ to this.$
Objectives:
* Rename this.$ to this.$element
* Rename this.$$ to this.$
* Get rid of the need to use this.frame.$$
* Rename OO.ui.Element.get$$ to OO.ui.Element.getJQuery

Changes: (using Sublime Text regex patterns)
* Replace "get$$" with "getJQuery"
* Replace "\.(\$)([^\$a-zA-Z])" with ".$element$2"
* Replace "\.(\$\$)" with ".$"
* Replace "'$$'" with "'$'"
* Set this.$ to null in constructor of OO.ui.Window
* Set this.$ to this.frame.$ in initialize method of OO.ui.Window
* Replace "\.(frame.\$)([^\$a-zA-Z])" with ".\$$2"

Bonus:
* Use this.$() in a bunch of places where $() was erroneously used

Change-Id: If3d870124ab8d10f8223532cda95c2b2b075db94
2013-11-03 23:03:49 -08:00

86 lines
1.8 KiB
JavaScript

/*!
* VisualEditor ContentEditable DocumentNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable document node.
*
* @class
* @extends ve.ce.BranchNode
* @constructor
* @param {ve.dm.DocumentNode} model Model to observe
* @param {ve.ce.Surface} surface Surface document is part of
* @param {Object} [config] Configuration options
*/
ve.ce.DocumentNode = function VeCeDocumentNode( model, surface, config ) {
// Parent constructor
ve.ce.BranchNode.call( this, model, config );
// Properties
this.surface = surface;
// Set root
this.setRoot( this );
// DOM changes
this.$element.addClass( 've-ce-documentNode' );
this.$element.prop( { 'contentEditable': 'true', 'spellcheck': true } );
};
/* Inheritance */
OO.inheritClass( ve.ce.DocumentNode, ve.ce.BranchNode );
/* Static Properties */
ve.ce.DocumentNode.static.name = 'document';
/* Methods */
/**
* Get the outer length.
*
* For a document node is the same as the inner length, which is why we override it here.
*
* @method
* @returns {number} Length of the entire node
*/
ve.ce.DocumentNode.prototype.getOuterLength = function () {
return this.length;
};
/**
* Get the surface the document is attached to.
*
* @method
* @returns {ve.ce.Surface} Surface the document is attached to
*/
ve.ce.DocumentNode.prototype.getSurface = function () {
return this.surface;
};
/**
* Disable editing.
*
* @method
*/
ve.ce.DocumentNode.prototype.disable = function () {
this.$element.prop( 'contentEditable', 'false' );
};
/**
* Enable editing.
*
* @method
*/
ve.ce.DocumentNode.prototype.enable = function () {
this.$element.prop( 'contentEditable', 'true' );
};
/* Registration */
ve.ce.nodeFactory.register( ve.ce.DocumentNode );