| 1 |
// $Id: region_manager.js,v 1.1.2.4 2009/05/21 02:50:13 q0rban Exp $ |
// $Id: region_manager.js,v 1.1.2.5 2009/05/21 16:59:23 q0rban Exp $ |
| 2 |
|
|
| 3 |
/** |
/** |
| 4 |
* Show/hide form elements for editing a block title. |
* Show/hide form elements for editing a block title. |
| 111 |
/** |
/** |
| 112 |
* Perform actions from operation links |
* Perform actions from operation links |
| 113 |
*/ |
*/ |
| 114 |
Drupal.behaviors.regionManagerNodeBlock = function() { |
Drupal.behaviors.regionManagerCreate = function() { |
| 115 |
$('a.region-manager-nodeblock-menu-link').click(function() { |
$('a.region-manager-create-menu-link').click(function() { |
| 116 |
var typesList = $('div.region-manager-nodeblock-menu div.item-list-wrapper'); |
var typesList = $('div.region-manager-create-menu div.item-list-wrapper'); |
| 117 |
if (typesList.is(':hidden')) { |
if (typesList.is(':hidden')) { |
| 118 |
typesList.show('fast'); |
typesList.show('fast'); |
| 119 |
} |
} |