# HG changeset patch # User hamidouk # Date 1327939701 -3600 # Node ID a996a24e07d6612dbdd01bab5ac5f3a9714c1725 # Parent 76400fd4ce70fc0dca8b766c4f9a6d357580a90d fixed url generation bug. diff -r 76400fd4ce70 -r a996a24e07d6 src/js/widgets/annotationsListWidget.js --- a/src/js/widgets/annotationsListWidget.js Mon Jan 30 16:24:15 2012 +0100 +++ b/src/js/widgets/annotationsListWidget.js Mon Jan 30 17:08:21 2012 +0100 @@ -150,7 +150,7 @@ // so we append the cutting id to the url. obj["url"] = this.project_url + "/" + media + "/" + annotation.meta["project"] + "/" + - annotation.meta["id-ref"] + "/"; + annotation.meta["id-ref"]; // obj["url"] = document.location.href.split("#")[0] + "/" + annotation.meta["project"]; }