mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
33e2c8f280
Objective: * Prevent input while the inspector is animating open Changes: ve.ui.LinkInspector.js * Disable and then re-enable the surface while the inspector is opening ve.ce.DocumentNode.js * Remove opacity changes on disable/enable ve.init.mw.ViewPageTarget.js * Change the opacity of the document when save dialog is open Bug: 51075 Change-Id: Ic7910a666b33b41b57b035a15cf1f8c9264e7111
86 lines
1.8 KiB
JavaScript
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] Config 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.$.addClass( 've-ce-documentNode' );
|
|
this.$.attr( { 'contentEditable': 'true', 'spellcheck': 'true' } );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.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.$.attr( 'contentEditable', 'false' );
|
|
};
|
|
|
|
/**
|
|
* Enable editing.
|
|
*
|
|
* @method
|
|
*/
|
|
ve.ce.DocumentNode.prototype.enable = function () {
|
|
this.$.attr( 'contentEditable', 'true' );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.nodeFactory.register( ve.ce.DocumentNode );
|