aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/files/js/filelist.js3
-rw-r--r--search/js/search.js8
2 files changed, 11 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 768fc77df24..3e61e50f75d 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1713,6 +1713,9 @@
if (OCA.Search.files) {
OCA.Search.files.setFileList(this);
}
+ if (OC.Search) {
+ OC.Search.clear();
+ }
},
/**
* Update UI based on the current selection
diff --git a/search/js/search.js b/search/js/search.js
index 58778900a69..c595ae25092 100644
--- a/search/js/search.js
+++ b/search/js/search.js
@@ -229,6 +229,14 @@
$searchResults.find('tr.result').remove();
lastQuery = false;
};
+ this.clear = function() {
+ self.hideResults();
+ if(self.hasFilter(getCurrentApp())) {
+ self.getFilter(getCurrentApp())('');
+ }
+ $searchBox.val('');
+ $searchBox.blur();
+ };
/**
* Event handler for when scrolling the list container.