Files
fsfe-website/scripts/master.js
ato d92c72b731 Trying a non-animated approach first
svn path=/branches/design/; revision=18645
2010-12-08 20:57:57 +00:00

16 lines
300 B
JavaScript

/*
/scripts/master.js -- Misc. script snippets needed for fsfe.org
*/
$(document).ready(function() {
// Close service notice when clicking dismiss button.
$("#service-notice .close a").click(function() {
// $("#service-notice").fadeOut("slow");
$("#service-notice").hide();
});
});