Skip to content

Commit

Permalink
fix for case class icon after history reload
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatov committed Aug 17, 2011
1 parent 5036ea4 commit 647709b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/main/webapp/scripts/cohistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ function reload() {
commentShow($(this).next());
});
filter();

replaceCaseClassIcon();
}

function filter() {
Expand Down Expand Up @@ -162,4 +164,8 @@ function order(members, comparator) {
}
last = node;
});
};
}

function replaceCaseClassIcon() {
$("img[src$='lib/case class.png']").attr("src", "lib/class.png");
}

0 comments on commit 647709b

Please sign in to comment.