Skip to content

Commit

Permalink
fix issue 170
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Vanderkam committed Mar 23, 2011
1 parent 25c2433 commit 135d996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/annotation.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ <h3>Annotations Demo</h3>
for (var i = 0; i < ann.length; i++) {
var name = nameAnnotation(ann[i]);
html += "<span id='" + name + "'>"
html += name + ": " + ann[i].shortText + " -> ";
html += ann[i].text + "</span><br/>";
html += name + ": " + (ann[i].shortText || '(icon)')
html += " -> " + ann[i].text + "</span><br/>";
}
document.getElementById("list").innerHTML = html;
}
Expand Down

0 comments on commit 135d996

Please sign in to comment.