summaryrefslogtreecommitdiffstats
path: root/core/search
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-09-25 18:19:42 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-10-01 17:16:09 +0200
commitb9bc2417e7a8dc81feb0abe20359bedaf864f790 (patch)
tree61b47fbf37c1d168da8625224debde9e6a985348 /core/search
parent7fb651235128dcbca8a6683b5cdafdf835f46300 (diff)
downloadnextcloud-server-b9bc2417e7a8dc81feb0abe20359bedaf864f790.tar.gz
nextcloud-server-b9bc2417e7a8dc81feb0abe20359bedaf864f790.zip
Comply to eslint
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/search')
-rw-r--r--core/search/js/search.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/search/js/search.js b/core/search/js/search.js
index 0822eee0364..4f5499d03c8 100644
--- a/core/search/js/search.js
+++ b/core/search/js/search.js
@@ -31,8 +31,8 @@
* This is a simple method. Register a new search with your function as references.
* The events will forward the search or reset directly
*
- * @param {function} searchCallback the function to run on a query search
- * @param {function} resetCallback the function to run when the user reset the form
+ * @param {Function} searchCallback the function to run on a query search
+ * @param {Function} resetCallback the function to run when the user reset the form
*/
var Search = function(searchCallback, resetCallback) {
this.initialize(searchCallback, resetCallback);
@@ -45,8 +45,8 @@
/**
* Initialize the search box
*
- * @param {function} searchCallback the function to run on a query search
- * @param {function} resetCallback the function to run when the user reset the form
+ * @param {Function} searchCallback the function to run on a query search
+ * @param {Function} resetCallback the function to run when the user reset the form
*/
initialize: function(searchCallback, resetCallback) {