From dc52198b6ea8a7c161d366ea034d896dd70cd373 Mon Sep 17 00:00:00 2001 From: ato Date: Sat, 13 Nov 2010 00:52:21 +0000 Subject: [PATCH] Adding raw functionality for dismissing notice svn path=/branches/design/; revision=18304 --- scripts/master.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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!"); + }); + +});