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 a0b7c5f commit 748574eCopy full SHA for 748574e
js/ethplorer.js
@@ -1163,12 +1163,12 @@ Ethplorer = {
1163
},
1164
showFilter: function(data){
1165
var activeTab = Ethplorer.getActiveTab();
1166
- if(activeTab != 'transfers'){
1167
- Ethplorer.showTx = false;
1168
- }else{
1169
- Ethplorer.showTx = Ethplorer.Storage.get('showTx', 'all');
1170
- }
1171
if(activeTab && data.pager && data.pager[activeTab]){
+ if(activeTab != 'transfers'){
+ Ethplorer.showTx = false;
+ }else{
+ Ethplorer.showTx = Ethplorer.Storage.get('showTx', 'all');
+ }
1172
if(data.pager[activeTab].records > 100000 || Ethplorer.maxListSize > 100000){
1173
$('#filter_list').hide();
1174
}else{
0 commit comments