##// END OF EJS Templates
Hide email form row by the JS code.
neko259 -
r653:1e585663 default
parent child Browse files
Show More
@@ -23,7 +23,17 b''
23 for the JavaScript code in this page.
23 for the JavaScript code in this page.
24 */
24 */
25
25
26 /**
27 * An email is a hidden file to prevent spam bots from posting. It has to be
28 * hidden.
29 */
30 function hideEmailFromForm() {
31 $('.form-email').parent().parent().hide();
32 }
33
26 $( document ).ready(function() {
34 $( document ).ready(function() {
35 hideEmailFromForm();
36
27 $("a[href='#top']").click(function() {
37 $("a[href='#top']").click(function() {
28 $("html, body").animate({ scrollTop: 0 }, "slow");
38 $("html, body").animate({ scrollTop: 0 }, "slow");
29 return false;
39 return false;
General Comments 0
You need to be logged in to leave comments. Login now