We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 381d768 commit 684a38aCopy full SHA for 684a38a
imagetagger/imagetagger/annotations/static/annotations/js/verification.js
@@ -109,6 +109,23 @@ function calculateImageScale() {
109
})
110
}
111
112
+ function loadSingleAnnotation(id, fromHistory) {
113
+ let params = {
114
+ annotation_id: id,
115
+ };
116
+ $.ajax(API_ANNOTATIONS_BASE_URL + 'annotation/loadone/?' + $.param(params), {
117
+ type: 'GET',
118
+ headers: gHeaders,
119
+ dataType: 'json',
120
+ success: function (data) {
121
+ continueLoadAnnotationView(data.annotation, fromHistory);
122
+ },
123
+ error: function () {
124
+ displayFeedback($('#feedback_connection_error'))
125
+ }
126
+ })
127
128
+
129
/**
130
* Scroll image list to make current image visible.
131
*/
0 commit comments