Merge branch 'master' of github.com:psychobunny/node-forum

This commit is contained in:
Julian Lam
2013-04-24 17:14:14 -04:00

View File

@@ -83,8 +83,8 @@ var socket,
}; };
app.post_topic = function() { app.post_topic = function() {
var title = document.getElementById('post_title').innerHTML, var title = document.getElementById('post_title').value,
content = document.getElementById('post_content').innerHTML; content = document.getElementById('post_content').value;
if (title.length < 5 || content.length < 5) { if (title.length < 5 || content.length < 5) {
app.alert({ app.alert({