Merge pull request #1136 from emanuelschuetze/template-fixes
Template fixes
This commit is contained in:
commit
b4e8b90656
@ -2,5 +2,4 @@
|
||||
|
||||
<h1>
|
||||
{{ 'welcome_title'|get_config }}
|
||||
<hr>
|
||||
</h1>
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
<h1>
|
||||
{{ slide.title }}
|
||||
<hr>
|
||||
</h1>
|
||||
|
||||
{% if slide.text %}
|
||||
|
@ -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');
|
||||
}
|
||||
|
@ -87,7 +87,7 @@
|
||||
<div class="row-fluid">
|
||||
<div class="span12">
|
||||
<div id="notifications">
|
||||
<div id="dummy-notification" class="notification" style="display:none">
|
||||
<div id="dummy-notification" class="alert" style="display:none">
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
</div>
|
||||
{% for message in messages %}
|
||||
|
Loading…
Reference in New Issue
Block a user