files/media/js/print.js @ 5f05b296676b jilcrow

Start the Jilcrow rewrite. Move media folder.
author Steve Losh <steve@stevelosh.com>
date Tue, 30 Nov 2010 18:17:26 -0500
parents media/js/print.js@8534b74192a8
children (none)
$(function() {
    $('#leaf-content p:has(a)').add('#leaf-content ol:has(a)').add('#leaf-content ul:has(a)').each(function() {
        var printing_links = $(this).find('a')
                                    .not("[href^='#']")
                                    .not(":has(img)")
                                    .clone();
        $(this).after(printing_links);

        printing_links.wrap('<li></li>')
                      .parent()
                      .wrapAll('<ul class="print-links"></ul>');

        printing_links.each(function() {
            var href = $(this).attr('href');
            if (href.match("^/")) {
                href = 'http://stevelosh.com' + href;
            }
            $(this).after(': ' + href);
        });
    });
});