first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
jQuery(function () {
|
||||
jQuery('.handlediv').click(function () {
|
||||
if (jQuery(this).parent().hasClass('closed')) {
|
||||
jQuery(this).parent().removeClass('closed');
|
||||
} else {
|
||||
jQuery(this).parent().addClass('closed');
|
||||
}
|
||||
})
|
||||
});
|
||||
Reference in New Issue
Block a user