aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/widgets/dialog.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js
index c3ca95ed3..1bbb3fcd2 100644
--- a/ui/widgets/dialog.js
+++ b/ui/widgets/dialog.js
@@ -372,12 +372,14 @@ $.widget( "ui.dialog", {
first = tabbables.filter( ":first" ),
last = tabbables.filter( ":last" );
- if ( ( event.target === last[ 0 ] || event.target === this.uiDialog[ 0 ] ) && !event.shiftKey ) {
+ if ( ( event.target === last[ 0 ] || event.target === this.uiDialog[ 0 ] ) &&
+ !event.shiftKey ) {
this._delay( function() {
first.trigger( "focus" );
} );
event.preventDefault();
- } else if ( ( event.target === first[ 0 ] || event.target === this.uiDialog[ 0 ] ) && event.shiftKey ) {
+ } else if ( ( event.target === first[ 0 ] ||
+ event.target === this.uiDialog[ 0 ] ) && event.shiftKey ) {
this._delay( function() {
last.trigger( "focus" );
} );
ue='artonge/fix/drop_unecessary_exit'>artonge/fix/drop_unecessary_exit Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Repair/AddCleanupUpdaterBackupsJob.php
blob: 8bd938b7e3a24533cf3cc4e66dfca1803d5f9aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28