Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2022-01-10 16:16:47 +0300
committerLouis Chemineau <louis@chmn.me>2022-01-11 19:13:04 +0300
commit9fc6cc96346a0a5ef4a997741d9b3b0f9a9aabbe (patch)
tree849ea6916ae25665bd1436a2d87db961ca67344d /apps/files/js
parentd92cbf51493f0aa15745d2f9545cba2372eecec3 (diff)
Add generic type and description when its missing
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps/files/js')
-rw-r--r--apps/files/js/filelist.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index fec058effd3..2a3bea1ca16 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1203,7 +1203,7 @@
/**
* Custom code
* Set tag for all selected files
- * @param tagModel
+ * @param {any} tagModel -
* @private
*/
_onSelectTag: function(tagModel) {
@@ -1221,7 +1221,7 @@
},
/**
* remove tag from all selected files
- * @param tagId
+ * @param {any} tagId -
* @private
*/
_onDeselectTag: function(tagId) {
@@ -3348,7 +3348,7 @@
},
/**
* hide files matching the given filter
- * @param filter
+ * @param {any} filter -
*/
setFilter:function(filter) {
var total = 0;
@@ -3413,7 +3413,7 @@
},
/**
* get the current filter
- * @param filter
+ * @param {any} filter -
*/
getFilter:function(filter) {
return this._filter;