Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Huckestein committed May 30, 2010
1 parent 20296d1 commit 2467a02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion show_annotations.js
Expand Up @@ -72,7 +72,8 @@ function processJson(response) {

status_div = $("#status_" + statusId);

status_div.append("<div id=\"annotation_button_"+statusId+"\" class=\"annotation_button\">Show Annotations</div>").toggle(
status_div.append("<div id=\"annotation_button_"+statusId+"\" class=\"annotation_button\">Show Annotations</div>");
status_div.find(".annotation_button").toggle(
function() {
$("#annotation_list_"+statusId).slideDown();
$("#annotation_button_" + statusId).text("Hide Annotations");
Expand Down

0 comments on commit 2467a02

Please sign in to comment.