check exitst images

This commit is contained in:
2020-12-16 13:39:07 +07:00
parent 04d467a73c
commit 4d6f1cbed8
5 changed files with 41 additions and 13 deletions

View File

@@ -332,6 +332,12 @@ function checkAllSync(stt) {
}
}
function checkAllNotInList() {
$("#sync-lists").find("tr").removeClass("success").attr("data-stt", "false");
$(".not-in-list").addClass("success").attr("data-stt", "true");
$("#totals-choose").html($(".not-in-list").length);
}
var progress = 0;
var totals = 0;
function _sync() {
@@ -348,7 +354,7 @@ function _sync() {
$("#progress-form").removeClass("hidden");
totals = lists.length;
for (var i = 0; i < lists.length; i++) {
syncFeatureFromDevice(lists[i]);
syncFeatureFromDevice(lists[i]);
}
}