dotjs/unisubs.sifterapp.com.js @ bdcdc5452cc3

Force correct background color on SpellCap.
author Steve Losh <steve@stevelosh.com>
date Thu, 08 Mar 2012 10:38:41 -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();
    });
});