Skip to content

Commit

Permalink
Draggable: Safe activeElement access from iFrames for IE9, prevent wi…
Browse files Browse the repository at this point in the history
…ndow focus changes in IE9+. Fixed #9520 - Draggable: Browser window drops behind other windows in IE9/10
  • Loading branch information
tjvantoll committed Aug 28, 2013
1 parent 643ef44 commit eae2c4b
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions ui/jquery.ui.draggable.js
Expand Up @@ -76,9 +76,19 @@ $.widget("ui.draggable", $.ui.mouse, {

_mouseCapture: function(event) {

var o = this.options;

$( document.activeElement ).blur();
var document = this.document[ 0 ],
o = this.options;

// support: IE9
// IE9 throws an "Unspecified error" accessing document.activeElement from an <iframe>
try {
// Support: IE9+
// If the <body> is blurred, IE will switch windows, see #9520
if ( document.activeElement && document.activeElement.nodeName.toLowerCase() !== "body" ) {
// Blur any element that currently has focus, see #4261
$( document.activeElement ).blur();
}
} catch ( error ) {}

// among others, prevent a drag on a resizable-handle
if (this.helper || o.disabled || $(event.target).closest(".ui-resizable-handle").length > 0) {
Expand Down

0 comments on commit eae2c4b

Please sign in to comment.