mirror of https://github.com/xwiki-labs/cryptpad
remove focus from Access modal input
(when overlay is applied)
This commit is contained in:
parent
0365fdf31d
commit
f202a617d0
|
@ -467,7 +467,8 @@ define([
|
||||||
var setLock = function (locked) {
|
var setLock = function (locked) {
|
||||||
$(link).find('.cp-overlay').toggle(locked);
|
$(link).find('.cp-overlay').toggle(locked);
|
||||||
$(link).find('.cp-usergrid-user').attr('tabindex', locked ? -1 : 0);
|
$(link).find('.cp-usergrid-user').attr('tabindex', locked ? -1 : 0);
|
||||||
$(link).find('.cp-access-add').attr('tabindex', locked ? -1 : 0);
|
$(link).find('.cp-usergrid-filter input').attr('tabindex', locked ? -1 : 0); //tbd
|
||||||
|
$(link).find('.cp-access-add').attr('tabindex', locked ? -1 : 0); //tbd
|
||||||
};
|
};
|
||||||
|
|
||||||
// Remove owner column
|
// Remove owner column
|
||||||
|
|
Loading…
Reference in New Issue