summaryrefslogtreecommitdiffstats
path: root/apps/files/js/filelist.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r--apps/files/js/filelist.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index c84d6c3c47d..b6e1f791edd 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -2117,15 +2117,16 @@
this.hideIrrelevantUIWhenNoFilesMatch();
}
var that = this;
+ filter = filter.toLowerCase();
this.$fileList.find('tr').each(function(i,e) {
var $e = $(e);
- if ($e.data('file').toString().toLowerCase().indexOf(filter.toLowerCase()) === -1) {
+ if ($e.data('file').toString().toLowerCase().indexOf(filter) === -1) {
$e.addClass('hidden');
- that.$container.trigger('scroll');
} else {
$e.removeClass('hidden');
}
});
+ that.$container.trigger('scroll');
},
hideIrrelevantUIWhenNoFilesMatch:function() {
if (this._filter && this.fileSummary.summary.totalDirs + this.fileSummary.summary.totalFiles === 0) {