From aac8182a1d72ce7a2833ce257278dac617ee48a7 Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Thu, 16 May 2013 14:38:22 -0400 Subject: [PATCH 1/3] dont allow empty or short post title and body --- public/src/app.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/public/src/app.js b/public/src/app.js index b8d2afd710..8139fbdad1 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -212,10 +212,10 @@ var socket, content.value = ''; }; app.post_topic = function(category_id) { - var title = document.getElementById('post_title'), - content = document.getElementById('post_content'); + var title = $('#post_title'), + content = $('#post_content'); - if (title.length < 5 || content.length < 5) { + if (title.val().length < 5 || content.val().length < 5) { app.alert({ title: 'Topic Post Failure', message: 'You need to write more dude.', @@ -227,15 +227,15 @@ var socket, } socket.emit('api:topics.post', { - 'title' : title.value, - 'content' : content.value, + 'title' : title.val(), + 'content' : content.val(), 'category_id' : category_id }); jQuery(post_window).slideUp(250); $(document.body).removeClass('composing'); - title.value = ''; - content.value = ''; + title.val(''); + content.val(''); }; app.edit_post = function(pid) { From 7e7a4ffac5a7e1d1f2e61a3f2ecd47f1a682f5af Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 16 May 2013 15:10:11 -0400 Subject: [PATCH 2/3] fixed logout --- src/templates.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates.js b/src/templates.js index 8d04aacf6d..383a3b4213 100644 --- a/src/templates.js +++ b/src/templates.js @@ -31,7 +31,7 @@ var fs = require('fs'); loadTemplates([ 'header', 'footer', 'register', 'home', 'topic', 'account', 'friends', 'login', 'reset', 'reset_code', - '403', + '403', 'logout', 'admin/header', 'admin/footer', 'admin/index', 'emails/header', 'emails/footer', 'emails/reset', 'emails/reset_plaintext', 'emails/email_confirm', 'emails/email_confirm_plaintext' From 15006c69881df8333c6afa9fcebdfd58179aa472 Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Thu, 16 May 2013 15:16:38 -0400 Subject: [PATCH 3/3] fixed quoting --- public/templates/topic.tpl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/public/templates/topic.tpl b/public/templates/topic.tpl index 9b8e203e36..cffea752ff 100644 --- a/public/templates/topic.tpl +++ b/public/templates/topic.tpl @@ -52,7 +52,7 @@ -
  • +