initial commit
This commit is contained in:
commit
d4097e8b0e
46 changed files with 525 additions and 0 deletions
12
layouts/partials/after-content-js.html
Normal file
12
layouts/partials/after-content-js.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!-- Like button -->
|
||||
<script>
|
||||
$("i").click(function(){
|
||||
if ($(this).attr("red") == 'true'){
|
||||
$(this).animate({color:"#808080"});
|
||||
$(this).attr("red", false);
|
||||
} else {
|
||||
$(this).animate({color:"#ff0000"});
|
||||
$(this).attr("red", true);
|
||||
}
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue