Browse Source

return false dans un js.

bastien 13 years ago
parent
commit
6a7c4fb524
1 changed files with 2 additions and 0 deletions
  1. 2 0
      web/bundles/muzichindex/js/index.js

+ 2 - 0
web/bundles/muzichindex/js/index.js View File

@@ -3,11 +3,13 @@ $(document).ready(function(){
3 3
    $('#registration_link').click(function(){
4 4
      $('#registration_box').slideDown("slow");
5 5
      $('#login_box').slideUp("slow");
6
+     return false;
6 7
    });
7 8
    
8 9
    $('#login_link').click(function(){
9 10
      $('#login_box').slideDown("slow");
10 11
      $('#registration_box').slideUp("slow");
12
+     return false;
11 13
    });
12 14
    
13 15