| 1 |
// $Id: hierarchical_select.js,v 1.83 2008/11/29 23:18:53 wimleers Exp $ |
// $Id: hierarchical_select.js,v 1.84 2008/11/30 01:56:35 wimleers Exp $ |
| 2 |
|
|
| 3 |
(function($) { |
(function($) { |
| 4 |
|
|
| 118 |
|
|
| 119 |
$(document).unbind("mousemove", performDrag).unbind("mouseup", endDrag); |
$(document).unbind("mousemove", performDrag).unbind("mouseup", endDrag); |
| 120 |
$selects.css('opacity', 1); |
$selects.css('opacity', 1); |
| 121 |
if (height > defaultHeight) { |
if (height != Drupal.HierarchicalSelect.state[hsid].resizedHeight) { |
| 122 |
Drupal.HierarchicalSelect.state[hsid].resizedHeight = height; |
Drupal.HierarchicalSelect.state[hsid].resizedHeight = (height > defaultHeight) ? height : defaultHeight; |
| 123 |
} |
} |
| 124 |
} |
} |
| 125 |
}; |
}; |