From c618440878564d1cc87bf3d072cb7fae28eeceb2 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sat, 12 Mar 2016 10:16:45 -0500 Subject: [PATCH] span -> div --- contrib/static/mod.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/static/mod.js b/contrib/static/mod.js index f32dab2..5dd2d5c 100644 --- a/contrib/static/mod.js +++ b/contrib/static/mod.js @@ -145,7 +145,7 @@ function nntpchan_delete() { function createConnectionElement(j) { var e = document.createElement("div"); e.setAttribute("class", "connection"); - var auth = document.createElement("span"); + var auth = document.createElement("div"); auth.appendChild(document.createTextNode("Connection: ")); // authentication state if (j.authed) { @@ -157,7 +157,7 @@ function createConnectionElement(j) { e.appendChild(auth); // connection mode - var mode = document.createElement("span"); + var mode = document.createElement("div"); mode.setAttribute("class", "mode"); mode.appendChild(document.createTextNode("mode: "+j.mode)); e.appendChild(mode);