Commit 3549f475d694322986a42e8e25239c973f498400
1 parent
7f7a3c15
Exists in
master
and in
5 other branches
Search js included [Issue:#251]
Showing
1 changed file
with
79 additions
and
0 deletions
Show diff stats
| @@ -0,0 +1,79 @@ | @@ -0,0 +1,79 @@ | ||
| 1 | + | ||
| 2 | +var x = 0; | ||
| 3 | +$(".edit_card").on('click', function() { | ||
| 4 | + $(".presentation").css('display','none'); | ||
| 5 | + $(".editation").css('display','block'); | ||
| 6 | +}) | ||
| 7 | +$(".edit_card_end").on('click', function() { | ||
| 8 | + $(".editation").css('display','none'); | ||
| 9 | + $(".presentation").css('display','block'); | ||
| 10 | +}) | ||
| 11 | + | ||
| 12 | +$("#bot").on('click', function(){ | ||
| 13 | + x = x+1; | ||
| 14 | + console.log(2) | ||
| 15 | + if(x%2 == 0){ | ||
| 16 | + console.log(0) | ||
| 17 | + $("#down").attr('class', 'fa fa-caret-square-o-down'); | ||
| 18 | +} | ||
| 19 | +else{ | ||
| 20 | + console.log(1) | ||
| 21 | + $("#down").attr('class', 'fa fa-caret-square-o-up'); | ||
| 22 | +} | ||
| 23 | + | ||
| 24 | +}) | ||
| 25 | +$("#bot1").on('click', function(){ | ||
| 26 | + x = x+1; | ||
| 27 | + console.log(2) | ||
| 28 | + if(x%2 == 0){ | ||
| 29 | + console.log(0) | ||
| 30 | + $("#down1").attr('class', 'fa fa-caret-square-o-down'); | ||
| 31 | +} | ||
| 32 | +else{ | ||
| 33 | + console.log(1) | ||
| 34 | + $("#down1").attr('class', 'fa fa-caret-square-o-up'); | ||
| 35 | +} | ||
| 36 | + | ||
| 37 | +}) | ||
| 38 | + | ||
| 39 | +$("#bot2").on('click', function(){ | ||
| 40 | + x = x+1; | ||
| 41 | + console.log(2) | ||
| 42 | + if(x%2 == 0){ | ||
| 43 | + console.log(0) | ||
| 44 | + $("#down2").attr('class', 'fa fa-caret-square-o-down'); | ||
| 45 | +} | ||
| 46 | +else{ | ||
| 47 | + console.log(1) | ||
| 48 | + $("#down2").attr('class', 'fa fa-caret-square-o-up'); | ||
| 49 | +} | ||
| 50 | + | ||
| 51 | +}) | ||
| 52 | + | ||
| 53 | +$("#bot3").on('click', function(){ | ||
| 54 | + x = x+1; | ||
| 55 | + console.log(2) | ||
| 56 | + if(x%2 == 0){ | ||
| 57 | + console.log(0) | ||
| 58 | + $("#down3").attr('class', 'fa fa-caret-square-o-down'); | ||
| 59 | +} | ||
| 60 | +else{ | ||
| 61 | + console.log(1) | ||
| 62 | + $("#down3").attr('class', 'fa fa-caret-square-o-up'); | ||
| 63 | +} | ||
| 64 | + | ||
| 65 | +}) | ||
| 66 | +$("#bot4").on('click', function(){ | ||
| 67 | + x = x+1; | ||
| 68 | + console.log(2) | ||
| 69 | + if(x%2 == 0){ | ||
| 70 | + console.log(0) | ||
| 71 | + $("#down4").attr('class', 'fa fa-caret-square-o-down'); | ||
| 72 | +} | ||
| 73 | +else{ | ||
| 74 | + console.log(1) | ||
| 75 | + $("#down4").attr('class', 'fa fa-caret-square-o-up'); | ||
| 76 | +} | ||
| 77 | + | ||
| 78 | +}) | ||
| 79 | + |