| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 // $Id:$ 2 3 /** 4 * Code taken from user.js 5 */ 6 Drupal.behaviors.nodeformsettings = function (context) { 7 $('div.nodeformsettings-radios input[type=radio]:not(.nodeformsettingsSettings-processed)', context).addClass('nodeformsettingsSettings-processed').click(function () { 8 $('div.nodeformsettings-show-settings', context)[['hide', 'show'][this.value]](); 9 }); 10 11 $('div.nodeformsettings-radios-preview input[type=radio]:not(.nodeformsettingsSettings-processed)', context).addClass('nodeformsettingsSettings-processed').click(function () { 12 $('div.nodeformsettings-show-preview', context)[['show', 'hide'][this.value]](); 13 }); 14 };
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |