new version

This commit is contained in:
r888888888
2015-03-05 18:00:26 -08:00
parent b353b21c53
commit 7c53ad43ee
2 changed files with 5 additions and 7 deletions

View File

@@ -1,8 +1,6 @@
// Whoever did the rest of js files, he/she did it in some other way
// Hope this is not very wrong
$(document).ready(function() {
$("#maintoggle").click(function(){
$('#nav').toggle();
$('#maintoggle').toggleClass('toggler-active');
$(function() {
$("#maintoggle").click(function() {
$('#nav').toggle();
$('#maintoggle').toggleClass('toggler-active');
});
});