From 25d7e0f99b30af8202a368304f358c3e562705ed Mon Sep 17 00:00:00 2001 From: Emanuel Schuetze Date: Fri, 29 Nov 2013 13:01:58 +0100 Subject: [PATCH] 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 @@
-