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
68 lines
1.2 KiB
JavaScript
68 lines
1.2 KiB
JavaScript
/**
|
|
* ContentEditable node for a document.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.ce.LeafNode}
|
|
* @param model {ve.dm.AlienNode} Model to observe
|
|
*/
|
|
ve.ce.AlienNode = function( model ) {
|
|
// Inheritance
|
|
ve.ce.LeafNode.call( this, 'alien', model );
|
|
|
|
// Events
|
|
this.model.addListenerMethod( this, 'update', 'onUpdate' );
|
|
|
|
// Intialization
|
|
var _this = this;
|
|
|
|
/* We might need some of those at some point */
|
|
/*
|
|
this.$.on( {
|
|
'mousedown': function() {
|
|
_this.$.css( '-webkit-user-select', 'none' );
|
|
},
|
|
'mouseup': function() {
|
|
_this.$.css( '-webkit-user-select', '' );
|
|
},
|
|
} );
|
|
|
|
this.$.attr( 'contenteditable', false );
|
|
*/
|
|
|
|
// TODO: move to .css file
|
|
this.$.css( {
|
|
'display': 'inline',
|
|
'border': 'rgba(0,0,0,0.3) dashed 1px',
|
|
'background-color': 'rgba(255,255,186,0.3)'
|
|
} );
|
|
this.onUpdate();
|
|
};
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* Node rules.
|
|
*
|
|
* @see ve.ce.NodeFactory
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.ce.AlienNode.rules = {
|
|
'canBeSplit': false
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
ve.ce.AlienNode.prototype.onUpdate = function() {
|
|
this.$.html( this.model.getAttribute( 'html' ) );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.factory.register( 'alien', ve.ce.AlienNode );
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.ce.AlienNode, ve.ce.LeafNode );
|