# HG changeset patch # User durandn # Date 1442581479 -7200 # Node ID b45522b1b2aff72a18ce61c908ede9aa73ef8601 # Parent cfea8c04c8c7836034a687c6bf23e3431acf8ef3 Removed forgotten console.log calls diff -r cfea8c04c8c7 -r b45522b1b2af src/widgets/AnnotationsList.js --- a/src/widgets/AnnotationsList.js Fri Sep 18 14:48:13 2015 +0200 +++ b/src/widgets/AnnotationsList.js Fri Sep 18 15:04:39 2015 +0200 @@ -113,7 +113,6 @@ url: _url, type: "GET", success: function(_data) { - console.log(_data) _this.source.users_data = _data.objects }, error: function(_xhr, _error, _thrown) { @@ -582,7 +581,6 @@ IriSP.Widgets.AnnotationsList.prototype.onDeleteClick = function(event){ ann_id = event.target.id; - console.log(ann_id) delete_preview_$ = this.$.find(".Ldt-AnnotationsList-ul-ToDelete"); delete_preview_$.html(""); _list = this.getWidgetAnnotations() @@ -592,7 +590,6 @@ var _annotation = _list[0], _title = "", _this = this; - console.log(_annotation) if (_annotation.creator) { var _users = _this.source.users_data.filter(function(_user_data){ return _user_data.username == _annotation.creator @@ -686,7 +683,6 @@ } IriSP.Widgets.AnnotationsList.prototype.sendDelete = function(id){ - console.log("deleting "+id) var _this = this, _url = Mustache.to_html(this.api_delete_endpoint, {annotation_id: id}) diff -r cfea8c04c8c7 -r b45522b1b2af src/widgets/LatestAnnotation.js --- a/src/widgets/LatestAnnotation.js Fri Sep 18 14:48:13 2015 +0200 +++ b/src/widgets/LatestAnnotation.js Fri Sep 18 15:04:39 2015 +0200 @@ -101,7 +101,6 @@ } }) } - console.log(this.source.users_data) } IriSP.Widgets.LatestAnnotation.prototype.draw = function(){