Fix focussing the reply button/link after closing the reply widget

Change-Id: I0db0fc8a93512751f8a9bcc96b048c1ab1f24f95
This commit is contained in:
Bartosz Dziewoński 2022-08-01 23:05:38 +02:00
parent 5b2f74ef5e
commit 549fcc062b

View file

@ -689,7 +689,7 @@ ReplyWidget.prototype.tryTeardown = function () {
} ); } );
} }
promise = promise.then( function () { promise = promise.then( function () {
widget.teardown( true ); widget.teardown( 'abandoned' );
} ); } );
return promise; return promise;
}; };