mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.AlienBlockNode.js
Trevor Parscal c40174b60c Changed to use MIT license per agreement with the VisualEditor team
This license change is aimed at maximizing the reusability of this code
in other projects. VisualEditor is more than just an awesome editor for
MediaWiki, it's the new editor for the entire internet.

Added license and author files, plus mentions of the license to all
VisualEditor PHP, JavaScript and CSS files. Parser files have not been
modified but are effectively re-licensed since there's no overriding
license information. 3rd party libraries are not changed, but are all
already MIT licensed.

Change-Id: I895b256325db7c8689756edab34523de4418b0f2
2012-07-19 13:25:45 -07:00

58 lines
1.2 KiB
JavaScript

/**
* VisualEditor content editable AlienBlockNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable node for an alien block node.
*
* @class
* @constructor
* @extends {ve.ce.LeafNode}
* @param model {ve.dm.AlienBlockNode} Model to observe
*/
ve.ce.AlienBlockNode = function( model ) {
// Inheritance
ve.ce.LeafNode.call( this, 'alienBlock', model );
// DOM Changes
this.$.addClass( 've-ce-alienBlockNode' );
this.$.attr( 'contenteditable', false );
// Events
this.model.addListenerMethod( this, 'update', 'onUpdate' );
// Intialization
this.onUpdate();
};
/* Static Members */
/**
* Node rules.
*
* @see ve.ce.NodeFactory
* @static
* @member
*/
ve.ce.AlienBlockNode.rules = {
'canBeSplit': false
};
/* Methods */
ve.ce.AlienBlockNode.prototype.onUpdate = function() {
// TODO preventDefault on click for links inside, user should not leave the page
this.$.html( this.model.getAttribute( 'html' ) );
};
/* Registration */
ve.ce.nodeFactory.register( 'alienBlock', ve.ce.AlienBlockNode );
/* Inheritance */
ve.extendClass( ve.ce.AlienBlockNode, ve.ce.LeafNode );