dotjs/unisubs.sifterapp.com.js @ c0d4f70f7b26
Add bin/lisp
author |
Steve Losh <steve@stevelosh.com> |
date |
Sat, 27 Jul 2013 14:22:15 -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);
});
});