Archived
1
0

Merge branch 'master' of ssh://github.com/majestrate/nntpchan

This commit is contained in:
Jeff Becker 2019-03-03 12:51:35 -05:00
commit 3f8c583791
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
2 changed files with 7 additions and 0 deletions

View File

@ -550,3 +550,8 @@ background-repeat: repeat;
.mod { .mod {
color: red; color: red;
} }
.post-link {
font-size: 24pt;
float: right;
}

View File

@ -57,6 +57,8 @@
var link = document.createElement("a"); var link = document.createElement("a");
link.href = u.toString(); link.href = u.toString();
link.innerText = "[Link]"; link.innerText = "[Link]";
link.setAttribute("target", "_blank");
link.setAttribute("class", "post-link")
e.appendChild(document.createElement("hr")); e.appendChild(document.createElement("hr"));
e.appendChild(link); e.appendChild(link);
} }