Browse Source

hide all other token dropdowns when showing one

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/2532/head
Robin Appelman 9 years ago
parent
commit
4f6993a15e
No known key found for this signature in database GPG Key ID: 425003AC385454C5
  1. 1
      settings/js/authtoken_view.js

1
settings/js/authtoken_view.js

@ -357,6 +357,7 @@
_onConfigureToken: function (event) {
var $target = $(event.target);
var $row = $target.closest('tr');
$('.token-list tr').removeClass('active');
$row.toggleClass('active');
var id = $row.data('id');
},

Loading…
Cancel
Save