diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-10-15 14:29:52 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-10-24 15:41:08 +0200 |
commit | 5d888984a0db8dfc04be8b398e75f04f6894fa32 (patch) | |
tree | dc6cee2c1da08be68015717ea4eff03916134be6 /apps/files | |
parent | 37782b1084275d54474700e4ae7863b18e23dc04 (diff) | |
download | nextcloud-server-5d888984a0db8dfc04be8b398e75f04f6894fa32.tar.gz nextcloud-server-5d888984a0db8dfc04be8b398e75f04f6894fa32.zip |
Fix jsdocs build on server repo
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/favoritesplugin.js | 4 | ||||
-rw-r--r-- | apps/files/js/recentplugin.js | 4 | ||||
-rw-r--r-- | apps/files/js/tagsplugin.js | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/apps/files/js/favoritesplugin.js b/apps/files/js/favoritesplugin.js index 3ceadca826d..5964d71a469 100644 --- a/apps/files/js/favoritesplugin.js +++ b/apps/files/js/favoritesplugin.js @@ -10,9 +10,9 @@ (function(OCA) { /** - * @namespace OCA.Files.FavoritesPlugin - * * Registers the favorites file list from the files app sidebar. + * + * @namespace OCA.Files.FavoritesPlugin */ OCA.Files.FavoritesPlugin = { name: 'Favorites', diff --git a/apps/files/js/recentplugin.js b/apps/files/js/recentplugin.js index c1b013ef1b8..a6eddc752db 100644 --- a/apps/files/js/recentplugin.js +++ b/apps/files/js/recentplugin.js @@ -10,9 +10,9 @@ (function (OCA) { /** - * @namespace OCA.Files.RecentPlugin - * * Registers the recent file list from the files app sidebar. + * + * @namespace OCA.Files.RecentPlugin */ OCA.Files.RecentPlugin = { name: 'Recent', diff --git a/apps/files/js/tagsplugin.js b/apps/files/js/tagsplugin.js index b8e17115b4b..008fe752b6b 100644 --- a/apps/files/js/tagsplugin.js +++ b/apps/files/js/tagsplugin.js @@ -132,11 +132,11 @@ OCA.Files = OCA.Files || {}; /** - * @namespace OCA.Files.TagsPlugin - * * Extends the file actions and file list to include a favorite mark icon * and a favorite action in the file actions menu; it also adds "data-tags" * and "data-favorite" attributes to file elements. + * + * @namespace OCA.Files.TagsPlugin */ OCA.Files.TagsPlugin = { name: 'Tags', |