Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions jira/subversion-commits.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ function createReviewView() {
var index = 0;
var changes = [];
var mapChanges = [];
//select dev with id issueContent
//select div with id issue_actions_container in it
//select tables in it
//find rows with text 'Files Changed'
//select next sibling tr (in terminology of jquery it is "next adjacent selector"
//select td in it
//select a in it
$("div#issueContent div#issue_actions_container table tr:contains('Files Changed') + tr td a").each(function() {
var change = new Change($(this).text(), $(this).attr("href"));
if (mapChanges[change.label]) {
Expand Down