Created
February 19, 2015 15:23
-
-
Save zurie/d85680ce18861b79fc0f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function(){ | |
| $("a.switch_thumb").toggle(function(){ | |
| $(this).addClass("swap"); | |
| $("ul.display").fadeOut("fast", function() { | |
| $(this).fadeIn("fast").addClass("thumb_view"); | |
| }); | |
| }, function () { | |
| $(this).removeClass("swap"); | |
| $("ul.display").fadeOut("fast", function() { | |
| $(this).fadeIn("fast").removeClass("thumb_view"); | |
| }); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment