Control bar visible on all page but all alerts page.

This commit is contained in:
Mikaël Ates 2015-11-03 18:30:03 +01:00
parent 53ba981db9
commit 46c5054c5b
1 changed files with 8 additions and 1 deletions

View File

@ -25,5 +25,12 @@
{% endblock %}
{% block extra_end_scripts %}
<script>$(document).ready(all_alerts())</script>
<script>
$(document).ready(function(){
$('div#controlbar').remove();
$('div#content-1').css({'height': '100%'});
$('div#alerts').css({'height': '94%'});
all_alerts();
})
</script>
{% endblock %}