From 7f7c3a011d05669536354686af37643986e9c27f Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Tue, 22 Nov 2016 17:44:37 +0800 Subject: webui: main.js: Extend "showModal()" with "title" and "contents" * Change original "message" attribute to "title" * Add new attribute "contents" which allow multiple paragraphs --- fg21sim/webui/static/js/main.js | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to 'fg21sim/webui/static') diff --git a/fg21sim/webui/static/js/main.js b/fg21sim/webui/static/js/main.js index c714f26..dc471dc 100644 --- a/fg21sim/webui/static/js/main.js +++ b/fg21sim/webui/static/js/main.js @@ -171,7 +171,8 @@ var toggleBlock = function (toggle, targetBlock) { * * The input `data` may have the following attributes: * - `icon` : FontAwesome icon (specified without the beginning `fa-`) - * - `message` : Main summary message + * - `title` : Notification title/summary + * - `contents` : Notification detail contents, may be a list of paragraphs * - `code` : Error code if it is an error notification * - `reason` : Reason of the error * - `buttons` : A list of buttons, which have these attributes: @@ -186,12 +187,22 @@ var showModal = function (modalBox, data) { modalBox.html(""); var p = $("

"); if (data.icon) { - $("").addClass("fa fa-2x").addClass("fa-" + data.icon).appendTo(p); + $("").addClass("icon fa fa-2x") + .addClass("fa-" + data.icon).appendTo(p); } - if (data.message) { - $("").text(" " + data.message).appendTo(p); + if (data.title) { + $("").addClass("title").text(data.title).appendTo(p); } modalBox.append(p); + if (data.contents) { + if ($.isArray(data.contents)) { + data.contents.forEach(function (p) { + modalBox.append($("

").html(p)); + }); + } else { + modalBox.append($("

").html(data.contents)); + } + } if (data.code) { modalBox.append($("

Error Code:

") .append($("") -- cgit v1.2.2