Fix bug where chunks still editable with Allow Editing off
If, with Allow Editing on, you change a chunk and then click directly on the "Allow Editing" switch again to turn it off without defocusing the chunk in-between (by clicking outside the chunk, using enter/escape, etc), all story chunks would still be editable. That behaviour has now been fixed.
This commit is contained in:
parent
723e02d793
commit
81c83dfef7
|
@ -774,8 +774,8 @@ $(document).ready(function(){
|
|||
$('body').on('input', autofocus).on('keydown', 'chunk', chunkOnKeyDown).on('focusout', 'chunk', submitEditedChunk);
|
||||
$('#allowediting').prop('checked', allowedit).prop('disabled', false).change().on('change', function () {
|
||||
if(allowtoggle) {
|
||||
checked = $(this).prop('checked')
|
||||
$("chunk").attr('contenteditable', checked)
|
||||
allowedit = $(this).prop('checked')
|
||||
$("chunk").attr('contenteditable', allowedit)
|
||||
}
|
||||
});
|
||||
} else if(msg.cmd == "updatescreen") {
|
||||
|
|
Loading…
Reference in New Issue