From 8286cd97bc543614097776a053ac025462450f4b Mon Sep 17 00:00:00 2001 From: "holger.trampe" Date: Sun, 19 Apr 2020 23:14:29 +0200 Subject: [PATCH] summernote dragndrop aus --- .../__pycache__/settings.cpython-38.pyc | Bin 3897 -> 3897 bytes news/templates/news/news_addnews.html | 3 ++- news/templates/news/news_update.html | 3 ++- .../templates/standards/standards_add.html | 3 ++- .../templates/standards/standards_update.html | 4 ++-- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/digitaleagentur/__pycache__/settings.cpython-38.pyc b/digitaleagentur/__pycache__/settings.cpython-38.pyc index 5fb04347ba5169306e81cdc1641b500e46e2987d..e5e43c18982b5f468e9327e6084916faf8ec1b99 100644 GIT binary patch delta 19 Zcmdlfw^NQQl$V!_0SI*WZ{*VF2LLS^1Q!4R delta 19 Zcmdlfw^NQQl$V!_0SLD3*~q2O4*)Ph1f2i? diff --git a/news/templates/news/news_addnews.html b/news/templates/news/news_addnews.html index 184343f..f2c7377 100644 --- a/news/templates/news/news_addnews.html +++ b/news/templates/news/news_addnews.html @@ -20,7 +20,8 @@ $(document).ready(function() { $('#id_content').summernote({ height: 400, - lang: "de-DE" + lang: "de-DE", + disableDragAndDrop: true }); }); diff --git a/news/templates/news/news_update.html b/news/templates/news/news_update.html index 758d90d..4b15d3e 100644 --- a/news/templates/news/news_update.html +++ b/news/templates/news/news_update.html @@ -18,7 +18,8 @@ $(document).ready(function() { $('#id_content').summernote({ height: 400, - lang: "de-DE" + lang: "de-DE", + disableDragAndDrop: true }); }); diff --git a/standards/templates/standards/standards_add.html b/standards/templates/standards/standards_add.html index 1a9a878..5265a8d 100644 --- a/standards/templates/standards/standards_add.html +++ b/standards/templates/standards/standards_add.html @@ -692,7 +692,8 @@ $(document).ready(function() { $('#id_content').summernote({ height: 400, - lang: "de-DE" + lang: "de-DE", + disableDragAndDrop: true }); }); diff --git a/standards/templates/standards/standards_update.html b/standards/templates/standards/standards_update.html index 8393409..4176b00 100644 --- a/standards/templates/standards/standards_update.html +++ b/standards/templates/standards/standards_update.html @@ -827,8 +827,8 @@ $("#id_area").change(function () { $(document).ready(function() { $('#id_content').summernote({ lang: "de-DE", - height: 400 - + height: 400, + disableDragAndDrop: true }); });