/[drupal]/contributions/themes/activesite/script.js
ViewVC logotype

Contents of /contributions/themes/activesite/script.js

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


Revision 1.13 - (show annotations) (download) (as text)
Sun Jun 28 14:12:55 2009 UTC (5 months ago) by bz
Branch: MAIN
CVS Tags: DRUPAL-6--1-21
Changes since 1.12: +0 -0 lines
File MIME type: text/javascript
*** empty log message ***
1
2 if (Drupal.jsEnabled) {
3 $(document).ready(function() {
4
5 $('.ff_clear_link').each(function() {
6 var el = $(this);
7 el.mousedown(function(){return!1;});
8 });
9
10 /* ----------- */
11
12 $('.column_ico-1').click(column_ico_1_click);
13
14 function column_ico_1_click(){
15 var page = $('.page');
16 if(!page.is('.with_collapsed_panel')){page.addClass('with_collapsed_panel');}
17 else{page.removeClass('with_collapsed_panel');}
18 $.cookie('with_collapsed_panel',page.is('.with_collapsed_panel')?1:0, {expires: 1000, path: '/'});
19 return!1;
20 }
21
22 if($.cookie('with_collapsed_panel')==1){
23 $('.page').addClass('with_collapsed_panel');
24 };
25
26
27 });
28 }

  ViewVC Help
Powered by ViewVC 1.1.2