From f172e85e2c61fdb00a8f82afa436c1959a59be04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Dahlgren?= Date: Sun, 9 Nov 2014 19:22:03 +0100 Subject: [PATCH] Show launching state in servers list --- public/js/tpl/servers/list_item.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/js/tpl/servers/list_item.html b/public/js/tpl/servers/list_item.html index 3e12722..967745e 100644 --- a/public/js/tpl/servers/list_item.html +++ b/public/js/tpl/servers/list_item.html @@ -1,6 +1,10 @@ <% if (typeof(pid) != "undefined" && pid) { %> - Online + <% if (state) { %> + Online + <% } else { %> + Launching + <% } %> <% } else { %> Offline <% } %>