Issue #1193 : Bug Fix, select message now don't appear if the actual page contain all the tags

This commit is contained in:
Zacharie
2020-07-03 11:46:22 +02:00
committed by plegall
parent 16b6c399e8
commit e658afa0bc

View File

@@ -528,9 +528,11 @@ $('#CancelMerge').on('click', function() {
$('#selectAll').on('click', function() {
selectAll(tagToDisplay());
showSelectMessage(str_select_all_tag, function () {
selectAll(dataTags);
})
if (selected.length < dataTags.length) {
showSelectMessage(str_select_all_tag, function () {
selectAll(dataTags);
})
}
});
function selectAll(data) {