Fix 'enter' key in team invite modal
This commit is contained in:
parent
563e2161c3
commit
7db7db262c
@ -1685,6 +1685,11 @@ define([
|
|||||||
dismissButton
|
dismissButton
|
||||||
]) // XXX
|
]) // XXX
|
||||||
]);
|
]);
|
||||||
|
$(linkMessage).keydown(function (e) {
|
||||||
|
if (e.which === 13) {
|
||||||
|
e.stopPropagation();
|
||||||
|
}
|
||||||
|
});
|
||||||
var localStore = window.cryptpadStore;
|
var localStore = window.cryptpadStore;
|
||||||
localStore.get('hide-alert-teamInvite', function (val) {
|
localStore.get('hide-alert-teamInvite', function (val) {
|
||||||
if (val === '1') { return; }
|
if (val === '1') { return; }
|
||||||
@ -1763,7 +1768,7 @@ define([
|
|||||||
onClick: function () {
|
onClick: function () {
|
||||||
return process();
|
return process();
|
||||||
},
|
},
|
||||||
keys: [13]
|
keys: []
|
||||||
}, {
|
}, {
|
||||||
className: 'primary cp-teams-invite-copy',
|
className: 'primary cp-teams-invite-copy',
|
||||||
name: Messages.team_inviteLinkCopy, // XXX
|
name: Messages.team_inviteLinkCopy, // XXX
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user