Handling big commits & big diff

This commit is contained in:
Dmitriy Zaporozhets 2012-04-06 01:00:15 +03:00
parent 17a88bb6a2
commit 86676476e6
7 changed files with 85 additions and 53 deletions

View file

@ -74,3 +74,8 @@ function resetMenu() {
function slugify(text) {
return text.replace(/[^-a-zA-Z0-9]+/g, '_').toLowerCase();
}
function showDiff(link) {
$(link).next('table').show();
$(link).remove();
}