Changeset 687082
- Timestamp:
- 03/25/2013 05:27:25 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
jquery-expandable-comments/trunk/js/bb-toggle-kids.php
r687061 r687082 25 25 26 26 // change the text 27 $(this).text( $(this).text() == ' Hide Replies' ? 'Show Replies' : 'Hide Replies');27 $(this).text( $(this).text() == '<?php echo $hide; ?>' ? '<?php echo $show; ?>' : '<?php echo $hide; ?>'); 28 28 29 29 var $nextDiv = $(this).next(); … … 32 32 // animate the vibility of the children 33 33 if ($visibleSiblings.length == 0 ) { 34 $visibleSiblings.slideToggle(' slow', 'swing');34 $visibleSiblings.slideToggle('<?php echo $toggle_down; ?>', '<?php echo $easing; ?>'); 35 35 } else { 36 $nextDiv.slideToggle(' fast', 'swing');36 $nextDiv.slideToggle('<?php echo $toggle_up; ?>', '<?php echo $easing; ?>'); 37 37 } 38 38 });
Note: See TracChangeset
for help on using the changeset viewer.