diff --git a/scripts/master.js b/scripts/master.js index e69de29bb2..ba4ce6bd95 100644 --- a/scripts/master.js +++ b/scripts/master.js @@ -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!"); + }); + +});