/[drupal]/contributions/modules/admin_message/admin_message.js
ViewVC logotype

Contents of /contributions/modules/admin_message/admin_message.js

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Fri Mar 6 03:02:41 2009 UTC (8 months, 3 weeks ago) by ultimateboy
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
Changes since 1.1: +1 -1 lines
File MIME type: text/javascript
#289299 by ultimateboy: initial port to d6
1 // $Id$
2
3 // Global Killswitch
4 if (Drupal.jsEnabled) {
5 $(document).ready(function() {
6 // Close
7 $("#block-admin_message-admin_message a.admin-message-close").click(function() {
8 var href = $(this).attr("href");
9 $.get(href);
10 $(this).parent().slideUp('fast');
11 return false;
12 });
13 });
14 }

  ViewVC Help
Powered by ViewVC 1.1.2