Merge branch 'master' of ssh://github.com/majestrate/nntpchan
This commit is contained in:
commit
3f8c583791
@ -550,3 +550,8 @@ background-repeat: repeat;
|
|||||||
.mod {
|
.mod {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-link {
|
||||||
|
font-size: 24pt;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user