From afb21954afad1c299bd51ea4b64bc81f05788701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Ates?= Date: Tue, 3 Nov 2015 18:52:00 +0100 Subject: [PATCH] Move all alerts page specific js code in a dedicated module. --- .../static/biomon/js/biomon.allalerts.js | 36 +++++++++++++++++++ src/biomon/templates/biomon/alerts.html | 15 +++----- 2 files changed, 40 insertions(+), 11 deletions(-) create mode 100644 src/biomon/static/biomon/js/biomon.allalerts.js diff --git a/src/biomon/static/biomon/js/biomon.allalerts.js b/src/biomon/static/biomon/js/biomon.allalerts.js new file mode 100644 index 0000000..2867b72 --- /dev/null +++ b/src/biomon/static/biomon/js/biomon.allalerts.js @@ -0,0 +1,36 @@ +/* + biomon - Signs monitoring and patient management application + + Copyright (C) 2015 Entr'ouvert + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + +(function($) { + $(function() { + $('div#controlbar').remove(); + $('div#content-1').css({'height': '100%'}); + $('div#alerts').css({'height': '94%'}); + + /* At beginning hide titles, if episodes they'll be displayed in fine */ + $('div#running-alerts span#running').hide(); + $('div#closed-alerts span#closed').hide(); + + /* Run alert stats updating */ + ALERTS.refresh_alerts_stats(); + + /* Run alert table updating */ + ALERTS.refresh_alerts(); + }) +})(jQuery); diff --git a/src/biomon/templates/biomon/alerts.html b/src/biomon/templates/biomon/alerts.html index f64c729..1816156 100644 --- a/src/biomon/templates/biomon/alerts.html +++ b/src/biomon/templates/biomon/alerts.html @@ -1,6 +1,10 @@ {% extends "biomon/base.html" %} {% load i18n %} +{% block extra_scripts %} + +{% endblock %} + {% block content-1-right %}
@@ -23,14 +27,3 @@
{% endblock %} - -{% block extra_end_scripts %} - -{% endblock %}