File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 874874 // XXX_jblas: We need to stop crawling the entire document to kill focus. Instead,
875875 // we should be tracking focus with a live() handler so we already have
876876 // the element in hand at this point.
877- $ ( document . activeElement || "" ) . add ( "input:focus, textarea:focus, select:focus" ) . blur ( ) ;
877+ // Wrap this in a try/catch block since IE9 throw "Unspecified error" if document.activeElement
878+ // is undefined when we are in an IFrame.
879+ try {
880+ $ ( document . activeElement || "" ) . add ( "input:focus, textarea:focus, select:focus" ) . blur ( ) ;
881+ } catch ( e ) { }
878882
879883 // If we're displaying the page as a dialog, we don't want the url
880884 // for the dialog content to be used in the hash. Instead, we want
You can’t perform that action at this time.
0 commit comments