8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8e6d46 commit 79cbb5eCopy full SHA for 79cbb5e
js/ethplorer.js
@@ -1253,6 +1253,7 @@ Ethplorer = {
1253
showTransfers: function(switcher, type){
1254
Ethplorer.Nav.del('transfers');
1255
if(switcher.checked){
1256
+ type = 'all';
1257
Ethplorer.showTx = 'all';
1258
}else{
1259
if(type == 'eth'){
@@ -1265,7 +1266,7 @@ Ethplorer = {
1265
1266
}
1267
Ethplorer.gaSendEvent('userAction', 'listShowTx', type);
1268
Ethplorer.Storage.set('showTx', type);
- Ethplorer.Nav.set('showTx', type);
1269
+ if(type != 'all') Ethplorer.Nav.set('showTx', type);
1270
var tab = Ethplorer.getActiveTab();
1271
Ethplorer.reloadTab(tab);
1272
},
0 commit comments