Adding raw functionality for dismissing notice

svn path=/branches/design/; revision=18304
This commit is contained in:
ato
2010-11-13 00:52:21 +00:00
parent c35239990b
commit dc52198b6e

View File

@@ -0,0 +1,14 @@
/*
/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() {
alert("yes!");
});
});