dotjs/unisubs.sifterapp.com.js @ 5111987c9235

more.
author Steve Losh <steve@stevelosh.com>
date Tue, 06 Mar 2012 12:13:42 -0500
parents 5a5bcdfd8b54
children f8d38666b868
$(function() {
    $('ul.state li.priority').each(function(idx, el) {
        $(el).closest('.issue').find('h2').append(
            '<span class="new-priority">' + $(el).text() + '</span>'
        );
        $(el).remove();
    });
});