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
5 changes: 2 additions & 3 deletions app/assets/javascripts/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,8 @@ Sidebar.AnnotationListView = Backbone.View.extend({
$("span.annotator-hl").click(function(event) {
$("ul#annotation-list li").removeClass('hover');
$("span.highlightlink").tooltip('hide');
var str = this.id.toString();
var parts = str.match(/(hl)(.+)/).slice(1);
var targetid = "#sb" + parts[1];
var uuid = $(this).data('annotation').uuid;
var targetid = "#sb" + uuid;

// TODO: deal with the events in a more organized way (recompose them in functions)
$('div#annotation-well').animate({scrollTop:$(targetid).offset().top}, 100, function (){
Expand Down