This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/blotter/script.js
2012-08-15 11:13:25 +01:00

15 lines
403 B
JavaScript

$(document).ready(function() {
$(".shm-blotter2-toggle").click(function() {
$(".shm-blotter2").slideToggle("slow", function() {
if($(".shm-blotter2").is(":hidden")) {
$.cookie("ui-blotter2-hidden", 'true', {path: '/'});
}
else {
$.cookie("ui-blotter2-hidden", 'false', {path: '/'});
}
});
});
if($.cookie("ui-blotter2-hidden") == 'true') {
$(".shm-blotter2").hide();
}
});