store enabled exts in a config file, rather than moving directories around

This commit is contained in:
Shish
2012-03-31 18:59:28 +01:00
parent 15df989f72
commit 67f1c1c51d
274 changed files with 63 additions and 1885 deletions

16
ext/blotter/script.js Normal file
View File

@@ -0,0 +1,16 @@
$(document).ready(function() {
$("#blotter2-toggle").click(function() {
$("#blotter2").slideToggle("slow", function() {
if($("#blotter2").is(":hidden")) {
$.cookie("blotter2-hidden", 'true', {path: '/'});
}
else {
$.cookie("blotter2-hidden", 'false', {path: '/'});
}
});
});
if($.cookie("blotter2-hidden") == 'true') {
$("#blotter2").hide();
}
});