mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.AlienInlineNode.js
Christian Williams 1932e0907f Phantoms not vanishing on mouseout
If the mouse is moved too quickly, the phantoms have a tendency to stick. This change moves the event from phantom.mouseleave to surface.mousemove.

Change-Id: I2c7e7bdc838427d4355a6c0c13bafe3198636dbe
2012-11-16 11:32:59 -08:00

63 lines
1.4 KiB
JavaScript

/**
* VisualEditor content editable AlienInlineNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable node for an alien inline node.
*
* @class
* @constructor
* @extends {ve.ce.AlienNode}
* @param {ve.dm.AlienInlineNode} model Model to observe.
*/
ve.ce.AlienInlineNode = function VeCeAlienInlineNode( model ) {
// Parent constructor
ve.ce.AlienNode.call( this, 'alienInline', model );
// DOM Changes
this.$.addClass( 've-ce-alienInlineNode' );
// Events
this.$.on( 'mouseenter', ve.bind( this.onMouseEnter, this ) );
};
/* Inheritance */
ve.inheritClass( ve.ce.AlienInlineNode, ve.ce.AlienNode );
/* Static Members */
/**
* Node rules.
*
* @see ve.ce.NodeFactory
* @static
* @member
*/
ve.ce.AlienInlineNode.rules = {
'canBeSplit': false
};
/* Methods */
ve.ce.AlienInlineNode.prototype.onMouseEnter = function () {
var $phantom = ve.ce.Surface.static.$phantomTemplate.clone(),
offset = this.$.offset(),
surface = this.root.getSurface();
$phantom.css( {
'top': offset.top,
'left': offset.left,
'height': this.$.height(),
'width': this.$.width()
} );
surface.$phantoms.empty().append( $phantom );
surface.$.on( 'mousemove.phantoms', ve.bind( this.onSurfaceMouseMove, this ) );
};
/* Registration */
ve.ce.nodeFactory.register( 'alienInline', ve.ce.AlienInlineNode );