15 lines
245 B
JavaScript
15 lines
245 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() {
|
|
alert("yes!");
|
|
});
|
|
|
|
});
|