From c2aca17d457d302cb1683f925b9e5ee93f0984ea Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Thu, 14 Nov 2013 16:33:12 -0500 Subject: Ref #14180, let focusin/out work on non-element targets. --- src/event.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/event.js b/src/event.js index 5ca6d2e96..8d4031211 100644 --- a/src/event.js +++ b/src/event.js @@ -728,7 +728,7 @@ if ( !support.focusinBubbles ) { jQuery.event.special[ fix ] = { setup: function() { - var doc = this.ownerDocument, + var doc = this.ownerDocument || this, attaches = data_priv.access( doc, fix ); if ( !attaches ) { @@ -737,7 +737,7 @@ if ( !support.focusinBubbles ) { data_priv.access( doc, fix, ( attaches || 0 ) + 1 ); }, teardown: function() { - var doc = this.ownerDocument, + var doc = this.ownerDocument || this, attaches = data_priv.access( doc, fix ) - 1; if ( !attaches ) { -- cgit v1.2.3