From 16e8992b2b393d510c786a825d4c843acd763138 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Wed, 31 Aug 2016 11:28:39 +0530 Subject: disabled any other/ general option in index.php file --- index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 index.php diff --git a/index.php b/index.php old mode 100644 new mode 100755 index b4000ea..f46a2ed --- a/index.php +++ b/index.php @@ -427,17 +427,17 @@ echo '


- I want to be notified.

+ I want to be notified.

-
-

+
+

-- cgit From 89e9fcd12e1e88a31cadc56093707c3ba7430927 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Wed, 31 Aug 2016 11:30:28 +0530 Subject: changed notifiaction checkbox value --- comment.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 comment.js diff --git a/comment.js b/comment.js old mode 100644 new mode 100755 index fd46a90..4c9e631 --- a/comment.js +++ b/comment.js @@ -14,15 +14,15 @@ $(document).ready(function(){ var $comment_notify = $("#comment-notify"); var $comment_email = $("#comment-email"); var $comment_email_wrapper = $("#comment-email-wrapper"); - $comment_email_wrapper.hide(); + $comment_email_wrapper.show(); // to hide change show to hide - $comment_notify.click(function() { + /* $comment_notify.click(function() { if($(this).attr("checked")) { $comment_email_wrapper.show(); } else { $comment_email_wrapper.hide(); } - }); + });*/ $("#comment-form").submit(function(e) { /* reset all the previous errors */ -- cgit