You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if anyone's experienced this, but for my editor when the link-button is pressed often pressing cancel, inserting, editing an existing link, or some variation of these ultimately leads to the modal backdrop persisting. I tried doing some basic research, and I'm not totally sure if this is right, but apparently the modal backdrop issue is commonly caused by multiple modal instances not closing correctly.
The text was updated successfully, but these errors were encountered:
$(document).ready(function() {
$('[data-wysiwyg]').wysihtml5({
toolbar: {
"link": true
}
});
// this ensures the modal-backdrop is removed when the dialog is closed
$('[data-wysihtml5-dialog]').on('hidden.bs.modal', function(){
$('.modal-backdrop').remove();
})
});
I'm not sure if anyone's experienced this, but for my editor when the link-button is pressed often pressing cancel, inserting, editing an existing link, or some variation of these ultimately leads to the modal backdrop persisting. I tried doing some basic research, and I'm not totally sure if this is right, but apparently the modal backdrop issue is commonly caused by multiple modal instances not closing correctly.
The text was updated successfully, but these errors were encountered: