witten
/
luminotes
Archived
1
0
Fork 0

Fix for an edge case where the mouse is hovering over a link that's in an editor in the process of being coverted from an iframe to a div (in which hovering is ignored).

This commit is contained in:
Dan Helfman 2009-01-24 23:59:23 -08:00
parent f841c17eeb
commit 5eb8311ab7
1 changed files with 1 additions and 1 deletions

View File

@ -872,7 +872,7 @@ Editor.prototype.mouse_hovered = function ( event ) {
Editor.prototype.mouse_hover_timeout = function ( hover_target ) {
// if the mouse is hovering over the same target that it was when the timer started
if ( hover_target == this.hover_target )
if ( hover_target == this.hover_target && this.iframe )
signal( this, "mouse_hovered", hover_target );
}