summernote dragndrop aus

This commit is contained in:
holger.trampe 2020-04-19 23:14:29 +02:00
parent 842720d27f
commit 8286cd97bc
5 changed files with 8 additions and 5 deletions

View File

@ -20,7 +20,8 @@
$(document).ready(function() {
$('#id_content').summernote({
height: 400,
lang: "de-DE"
lang: "de-DE",
disableDragAndDrop: true
});
});
</script>

View File

@ -18,7 +18,8 @@
$(document).ready(function() {
$('#id_content').summernote({
height: 400,
lang: "de-DE"
lang: "de-DE",
disableDragAndDrop: true
});
});
</script>

View File

@ -692,7 +692,8 @@ $(document).ready(function() {
$('#id_content').summernote({
height: 400,
lang: "de-DE"
lang: "de-DE",
disableDragAndDrop: true
});
});

View File

@ -827,8 +827,8 @@ $("#id_area").change(function () {
$(document).ready(function() {
$('#id_content').summernote({
lang: "de-DE",
height: 400
height: 400,
disableDragAndDrop: true
});
});