Clear the mass tagger's selection on load

.. in case it was autocompleted by the browser.
This commit is contained in:
im-mi 2016-09-02 05:08:58 -04:00
parent 29bdc5da22
commit 49d6fa99da

View File

@ -34,3 +34,8 @@ function toggle_tag( button, id ) {
list.val(string); list.val(string);
} }
} }
$(function () {
// Clear the selection, in case it was autocompleted by the browser.
$('#mass_tagger_ids').val("");
});