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

This commit is contained in:
Jörn Friedrich Dreyer 2015-01-07 15:59:34 +01:00
parent 5ce295907f
commit 0bb91cfcf3
1 changed files with 3 additions and 1 deletions

View File

@ -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');
}
},