This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2015-09-04 17:09:43 -04:00
|
|
|
//
|
|
|
|
|
// nntpchan.js -- frontend ui niceness
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// insert a backlink for a post given its short hash
|
2015-09-04 17:20:02 -04:00
|
|
|
function nntpchan_backlink(shorthash)
|
|
|
|
|
{
|
2015-09-04 17:09:43 -04:00
|
|
|
var elem = document.getElementById("postform_message");
|
2015-09-04 17:20:02 -04:00
|
|
|
if ( elem )
|
|
|
|
|
{
|
2015-10-19 09:20:30 -04:00
|
|
|
elem.value += ">>" + shorthash.substr(0,10) + "\n";
|
2015-09-04 17:20:02 -04:00
|
|
|
}
|
2015-09-04 17:09:43 -04:00
|
|
|
}
|