src/js/widgets/annotationsListWidget.js
branchpopcorn-port
changeset 709 05ae2aa10d24
parent 703 9341d858bf8e
child 714 9056928c46de
--- a/src/js/widgets/annotationsListWidget.js	Mon Jan 23 17:27:37 2012 +0100
+++ b/src/js/widgets/annotationsListWidget.js	Wed Jan 25 15:38:46 2012 +0100
@@ -123,8 +123,7 @@
   
   for (i = 0; i < annotations.length; i++) {
       var annotation = annotations[i];
-      console.log(annotation);
-      console.log(view_types, annotation.meta["id-ref"]);
+
       /* filter the annotations whose type is not the one we want */
       /* We want _all_ the annotations.
       if (typeof(annotation.meta) !== "undefined" && typeof(annotation.meta["id-ref"]) !== "undefined"
@@ -143,7 +142,7 @@
       obj["url"] = document.location.href.split("#")[0] + "/" + annotation.meta["project"];
       l.push(obj);
   }
-  console.log(l);
+
   this.do_redraw(l);
 };
 IriSP.AnnotationsListWidget.prototype.draw = function() {