mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 01:36:13 +00:00
Fixes a bug with the transitions of the wallet listings
This commit is contained in:
parent
694ae9e556
commit
040db7198b
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ function walletMenuListener(e) {
|
|||
var walletSelectPlatform = function(e) {
|
||||
var t = getEvent(e, 'target'),
|
||||
p = t;
|
||||
if (t.nodeName !== 'A') return;
|
||||
if (t.nodeName !== 'A' || t.getAttribute('href')) return;
|
||||
while (p.parentNode.nodeName === 'UL' || p.parentNode.nodeName === 'LI') p = p.parentNode;
|
||||
for (var i = 0, nds = p.getElementsByTagName('LI'), n = nds.length; i < n; i++) removeClass(nds[i], 'active');
|
||||
var tt = t;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue