Created
January 29, 2016 10:56
-
-
Save rayets123/cab457c987c43fea74a6 to your computer and use it in GitHub Desktop.
search
This file contains 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
$(".toggle-mnu").click(function() { | |
$(this).toggleClass("on"); | |
if ($(".right_sidebar").css("right") == "0px") { | |
$(".right_sidebar").css("right", "-185px"); | |
} | |
else{ | |
$(".right_sidebar").css("right", "0px"); | |
} | |
return false; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment