From 42f10fa03d6b027dfc63be6e60996e70af8f4685 Mon Sep 17 00:00:00 2001 From: Emanuel Schuetze Date: Fri, 29 Nov 2013 13:00:47 +0100 Subject: [PATCH 1/6] Fixed projector template: Removed double
in welcome and custom slide. --- openslides/projector/templates/projector/default_slide.html | 1 - .../projector/templates/projector/projectorslide_slide.html | 1 - 2 files changed, 2 deletions(-) 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 %} From 25d7e0f99b30af8202a368304f358c3e562705ed Mon Sep 17 00:00:00 2001 From: Emanuel Schuetze Date: Fri, 29 Nov 2013 13:01:58 +0100 Subject: [PATCH 2/6] Fixed dummy-notification message class and generic new_message function. --- openslides/static/javascript/utils.js | 2 +- openslides/templates/base.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 @@
-