diff options
Diffstat (limited to 'templates/repo/diff_box.tmpl')
-rw-r--r-- | templates/repo/diff_box.tmpl | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/templates/repo/diff_box.tmpl b/templates/repo/diff_box.tmpl index 35af649b0f..8394598875 100644 --- a/templates/repo/diff_box.tmpl +++ b/templates/repo/diff_box.tmpl @@ -152,21 +152,21 @@ {{if .IsSplitStyle}} <script> - (function() { - $('.add-code').each(function() { - var prev = $(this).prev(); - if(prev.is('.del-code') && prev.children().eq(3).text().trim() === '') { - while(prev.prev().is('.del-code') && prev.prev().children().eq(3).text().trim() === '') { - prev = prev.prev(); + (function() { + $('.add-code').each(function() { + var prev = $(this).prev(); + if(prev.is('.del-code') && prev.children().eq(3).text().trim() === '') { + while(prev.prev().is('.del-code') && prev.prev().children().eq(3).text().trim() === '') { + prev = prev.prev(); + } + prev.children().eq(3).html($(this).children().eq(3).html()); + prev.children().eq(2).html($(this).children().eq(2).html()); + prev.children().eq(3).addClass('add-code'); + prev.children().eq(2).addClass('add-code'); + $(this).remove(); } - prev.children().eq(3).html($(this).children().eq(3).html()); - prev.children().eq(2).html($(this).children().eq(2).html()); - prev.children().eq(3).addClass('add-code'); - prev.children().eq(2).addClass('add-code'); - $(this).remove(); - } - }); - }()); + }); + }()); </script> {{end}} {{end}} |