File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -372,12 +372,14 @@ $.widget( "ui.dialog", {
372
372
first = tabbables . filter ( ":first" ) ,
373
373
last = tabbables . filter ( ":last" ) ;
374
374
375
- if ( ( event . target === last [ 0 ] || event . target === this . uiDialog [ 0 ] ) && ! event . shiftKey ) {
375
+ if ( ( event . target === last [ 0 ] || event . target === this . uiDialog [ 0 ] ) &&
376
+ ! event . shiftKey ) {
376
377
this . _delay ( function ( ) {
377
378
first . trigger ( "focus" ) ;
378
379
} ) ;
379
380
event . preventDefault ( ) ;
380
- } else if ( ( event . target === first [ 0 ] || event . target === this . uiDialog [ 0 ] ) && event . shiftKey ) {
381
+ } else if ( ( event . target === first [ 0 ] ||
382
+ event . target === this . uiDialog [ 0 ] ) && event . shiftKey ) {
381
383
this . _delay ( function ( ) {
382
384
last . trigger ( "focus" ) ;
383
385
} ) ;
You can’t perform that action at this time.
0 commit comments