Skip to content

Commit

Permalink
ESLint fixes (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsekachev authored and nmanovic committed Oct 26, 2018
1 parent 08ac7c3 commit d9da254
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* SPDX-License-Identifier: MIT
*/

"use strict";

function CheckTFAnnotationRequest(taskId, tfAnnotationButton) {
let frequence = 5000;
let errorCount = 0;
Expand Down Expand Up @@ -90,9 +92,9 @@ window.cvat.dashboard = window.cvat.dashboard || {};
window.cvat.dashboard.uiCallbacks = window.cvat.dashboard.uiCallbacks || [];

window.cvat.dashboard.uiCallbacks.push(function(newElements) {
tids = [];
let tids = [];
for (let el of newElements) {
tids.push(el.id.split('_')[1])
tids.push(el.id.split('_')[1]);
}

$.ajax({
Expand Down

0 comments on commit d9da254

Please sign in to comment.