manager: make multisort labels clickable (#29087)

This commit is contained in:
Frédéric Péters 2018-12-15 11:11:46 +01:00
parent 34a26b2e85
commit 6d4c726d0e
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ function multisort(element)
checkbox = '<input type="checkbox"/>'
}
}
$('<li data-value="' + $(x).val() + '"><span class="handle">⣿</span>'+ checkbox + $(x).text() + '</li>').appendTo($ul);
$('<li data-value="' + $(x).val() + '"><span class="handle">⣿</span><label>'+ checkbox + $(x).text() + '</label></li>').appendTo($ul);
});
$ul.appendTo(element);