Skip to content

Commit

Permalink
release 0.47.7
Browse files Browse the repository at this point in the history
  • Loading branch information
oetiker committed Oct 24, 2023
1 parent acbe380 commit 8625d05
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.47.7 2023-10-24 11:08:14 +0200 Tobias Oetiker <tobi@oetiker.ch>

- force button to focus when it is clicked

0.47.6 2023-10-24 10:50:48 +0200 Tobias Oetiker <tobi@oetiker.ch>

- fix event ordering problem on ios and android
Expand Down
2 changes: 1 addition & 1 deletion lib/CallBackery.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use CallBackery::Plugin::Doc;
use CallBackery::Database;
use CallBackery::User;

our $VERSION = '0.47.6';
our $VERSION = '0.47.7';


=head2 config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,9 @@ qx.Class.define("callbackery.ui.plugin.Action", {
if (os == 'android' || os == 'ios'){
let orig_action = action;
action = () => {
if (button.isFocusable()) {
button.focus();
}
setTimeout(orig_action.bind(this),1);
}
}
Expand Down

0 comments on commit 8625d05

Please sign in to comment.