$('table').find('.name').find('a').each(function() {
var id = $(this).attr('href').split('?', 2)[0];
if(solved[id])
- $(this).parent().append(tick());
+ $(this).parent().prepend(tick());
else if(attempted[id])
- $(this).parent().append(xmark());
+ $(this).parent().prepend(xmark());
});
if(location.pathname == '/ct/')
$('table').find('.name').find('a').each(function() {
var id = $(this).attr('href').substr(4);
if(contests[id])
- $(this).parent().append(tick());
+ $(this).parent().prepend(tick());
});
if(location.pathname == '/log/')