dotjs/unisubs.sifterapp.com.js @ fb1a2de86f11
More.
author |
Steve Losh <steve@stevelosh.com> |
date |
Mon, 08 Apr 2013 11:15:28 -0400 |
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);
});
});