blob: 5a5515420635df2ec8781a8d8f111e97aa5160ea (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | (function($) {
	$(function() {
		$('pre.overflow').bind('mouseover', function() {
			$(this).css({
				'overflow' : 'auto',
				'padding-bottom' : '8px'
			});
		}).bind('mouseout', function() {
			$(this).css({
				'overflow' : 'hidden',
				'padding-bottom' : '23px'
			});
		}).trigger('mouseout');
	});
})(jQuery);
 |