diff --git a/openslides/projector/templates/projector/default_slide.html b/openslides/projector/templates/projector/default_slide.html index 71971372a..a44f04e56 100644 --- a/openslides/projector/templates/projector/default_slide.html +++ b/openslides/projector/templates/projector/default_slide.html @@ -2,5 +2,4 @@

{{ 'welcome_title'|get_config }} -

diff --git a/openslides/projector/templates/projector/projectorslide_slide.html b/openslides/projector/templates/projector/projectorslide_slide.html index 80c33eaaf..3eb47df89 100644 --- a/openslides/projector/templates/projector/projectorslide_slide.html +++ b/openslides/projector/templates/projector/projectorslide_slide.html @@ -2,7 +2,6 @@

{{ slide.title }} -

{% if slide.text %} diff --git a/openslides/static/javascript/utils.js b/openslides/static/javascript/utils.js index c45061b22..7c7602fa4 100644 --- a/openslides/static/javascript/utils.js +++ b/openslides/static/javascript/utils.js @@ -72,7 +72,7 @@ $(function () { function new_message(text, type) { var message = $('#dummy-notification').clone(true); - $(message).removeAttr('id').addClass(type).children('em').html(text); + $(message).removeAttr('id').addClass(type).html(text); $('#notifications').append(message); message.slideDown('fast'); } diff --git a/openslides/templates/base.html b/openslides/templates/base.html index 40fcb0584..f3ff5b207 100644 --- a/openslides/templates/base.html +++ b/openslides/templates/base.html @@ -87,7 +87,7 @@
-