Files
fsfe-website/scripts/master.js
ato 500383e718 Make notice fade out
svn path=/branches/design/; revision=18309
2010-11-13 01:19:37 +00:00

15 lines
268 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");
});
});