mirror of
https://github.com/status-im/codimd.git
synced 2025-02-03 09:33:27 +00:00
Updated to show locked-modal instead signin-modal when permission is "locked"
This commit is contained in:
parent
21ad5cfd60
commit
02cd3d633e
@ -1722,7 +1722,14 @@ editor.on('beforeChange', function (cm, change) {
|
||||
if (!isIgnoreEmitEvent) {
|
||||
if (!havePermission()) {
|
||||
change.canceled = true;
|
||||
$('.signin-modal').modal('show');
|
||||
switch (permission) {
|
||||
case "editable":
|
||||
$('.signin-modal').modal('show');
|
||||
break;
|
||||
case "locked":
|
||||
$('.locked-modal').modal('show');
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (change.origin == 'ignoreHistory') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user