- Patch #120291 by njivy: collapse.js compatible with jQuery 1.1.1.

6.x
Dries Buytaert 2007-02-28 20:29:38 +00:00
parent e6543caaff
commit 972d4f8de7
1 changed files with 2 additions and 7 deletions

View File

@ -7,17 +7,12 @@ Drupal.toggleFieldset = function(fieldset) {
if ($(fieldset).is('.collapsed')) {
var content = $('> div', fieldset).hide();
$(fieldset).removeClass('collapsed');
content.slideDown(300, {
complete: function() {
content.slideDown(300,
function() {
// Make sure we open to height auto
$(this).css('height', 'auto');
Drupal.collapseScrollIntoView(this.parentNode);
this.parentNode.animating = false;
},
step: function() {
// Scroll the fieldset into view
Drupal.collapseScrollIntoView(this.parentNode);
}
});
if (typeof Drupal.textareaAttach != 'undefined') {
// Initialize resizable textareas that are now revealed