Archived
1
0

span -> div

This commit is contained in:
Jeff Becker 2016-03-12 10:16:45 -05:00
parent 0bc6298cc0
commit c618440878
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -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);