don't show no files yet when mask is in place, fixes #13141

remotes/origin/fix-10825
Jörn Friedrich Dreyer 10 years ago
parent 5ce295907f
commit 0bb91cfcf3
  1. 4
      apps/files/js/filelist.js

@ -1696,7 +1696,9 @@
}
} else {
this.$el.find('#filestable thead th').toggleClass('hidden', this.isEmpty);
this.$el.find('#emptycontent').toggleClass('hidden', !this.isEmpty);
if (!this.$el.find('.mask').exists()) {
this.$el.find('#emptycontent').toggleClass('hidden', !this.isEmpty);
}
this.$el.find('.nofilterresults').addClass('hidden');
}
},

Loading…
Cancel
Save