dotjs/unisubs.sifterapp.com.js @ bff5a54972f4

Remove unused bundles
author Steve Losh <steve@stevelosh.com>
date Tue, 02 Jul 2013 16:08:02 -0700
parents e2adcd899a6e
children (none)
$(function() {
    $('ul.state li.priority').each(function(idx, el) {
        $(el).closest('.issue').find('h2').append(
            '<span class="new-priority">' + $(el).text() + '</span>');
        $(el).remove();
    });

    $('div.comment').each(function (idx, el) {
        var id = $(el).attr('id');
        var link = '<a href="#' + id + '">permalink</a>';
        $(el).find('.timestamp').append(link);
    });
});