Skip to content

Commit

Permalink
Issue #1193 : Bug Fix, select message now don't appear if the actual …
Browse files Browse the repository at this point in the history
…page contain all the tags
  • Loading branch information
Zacharieg committed Jul 3, 2020
1 parent e005ea1 commit c0d7fc7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions admin/themes/default/js/tags.js
Expand Up @@ -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) {
Expand Down

0 comments on commit c0d7fc7

Please sign in to comment.