Archived
1
0

add initial newboard stuff

This commit is contained in:
jeff
2015-10-02 15:38:59 -04:00
parent 12e887316a
commit 229ef83e35
2 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
function createBoard() {
var form = document.getElementById("postform");
var e = document.getElementById("boardname");
form.action = form.action + e.value;
form.submit();
}