$(function(){ // ================================= // init SHJS (syntax highlither) // ================================= window.sh_highlightDocument(); $('pre.sh_sourceCode').parent() .hover(function(){ var $div = $(this); if ($div.data('hideTimeout')) { clearTimeout($div.data('hideTimeout')); $div.data('hideTimeout', 0); } if (!$div.data('active')) { $div.data('showTimeout', setTimeout(function(){ var $pre = $div.children().eq(-1), scrollBarFix = 30, width = $pre[0].scrollWidth > $pre.outerWidth() ? Math.min($pre[0].scrollWidth + scrollBarFix, $(window).width() - scrollBarFix - $div.offset().left) : $pre.outerWidth(), height = document.defaultView && document.defaultView.getComputedStyle && parseFloat(document.defaultView.getComputedStyle($div[0], null).height) || $div.height(); $div.wrap('
') .css({position: 'absolute', width: width, height: height}).data('active', true) .find('> a').fadeIn(500); }, 500) ); } }, function(){ var $div = $(this); if ($div.data('showTimeout')) { clearTimeout($div.data('showTimeout')); $div.data('showTimeout', 0); } if ($div.data('active') && !$div.data('plainView')) { $div.data('hideTimeout', setTimeout(function(){ $div.unwrap().css({position: 'relative', width: '', height: ''}).data('active', false) .find('> a').hide(); }, 500) ); } }) .prepend('').find('> a').addClass('view-plain').attr('href', '#').text('View plain code') .click(function(){ var $link = $(this), $div = $link.parent(), $pre = $link.next(), $window = $(window), scrollPos = [$window.scrollLeft(), $window.scrollTop()], value = $pre.text(), height = $pre.outerHeight() + (window.opera && window.opera.version && window.opera.version() < 10.5 ? $pre[0].scrollHeight / ((value.replace(/\r\n/g, '\n').match(/\n/g) || '').length + 1) : 0); $('