Changeset 4197
- Timestamp:
- 12/17/07 02:28:37 (9 months ago)
- Files:
-
- 3 modified
- 1 copied
-
tags/1.2.2b (copied) (copied from trunk/jquery)
-
tags/1.2.2b/version.txt (modified) (1 diff)
-
trunk/jquery/version.txt (modified) (1 diff)
-
trunk/plugins/accordion/jquery.accordion.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tags/1.2.2b/version.txt
r3990 r4197 1 1.2.2 -pre1 1.2.2b -
trunk/jquery/version.txt
r3990 r4197 1 1.2.2 -pre1 1.2.2b -
trunk/plugins/accordion/jquery.accordion.js
r4186 r4197 39 39 } 40 40 var hideHeight = settings.toHide.height(), 41 showHeight = settings.toShow.height(), 41 //showHeight = settings.toShow.height(), 42 showHeight = 5, 42 43 difference = showHeight / hideHeight; 44 alert(hideHeight + " " + showHeight) 43 45 settings.toShow.css({ height: 0, overflow: 'hidden' }).show(); 44 46 settings.toHide.filter(":hidden").each(settings.complete).end().filter(":visible").animate({height:"hide"},{ 45 47 step: function(now){ 48 alert("hide: " + now); 46 49 settings.toShow.height((hideHeight - (now)) * difference ); 50 alert("show: " + (hideHeight - (now)) * difference ); 47 51 }, 48 52 duration: settings.duration,
