From fe9e7a344a90f85095067346bce5047e7ca5bdb0 Mon Sep 17 00:00:00 2001 From: mot Date: Fri, 24 Feb 2012 12:37:02 +0000 Subject: [PATCH] #299 * add concluded license info/comment * code cleanup svn path=/trunk/; revision=22564 --- scripts/master.js | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/scripts/master.js b/scripts/master.js index e898ce9393..64b7f546df 100644 --- a/scripts/master.js +++ b/scripts/master.js @@ -1,15 +1,16 @@ /* - -/scripts/master.js -- Misc. script snippets needed for fsfe.org - -*/ + * Master script snippet(s) for fsfe.org + * + * @license GPL-2.0 + * @license MIT + * @license-comment As this makes use of jQuery, the jQuery licensing has been concluded. + */ $(document).ready(function() { - // Close service notice when clicking dismiss button. + // Close service notice on dismiss button. $("#service-notice .close a").click(function() { -// $("#service-notice").fadeOut("slow"); - $("#service-notice").hide(); + $("#service-notice").hide(); }); });