summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-10-25 15:49:27 +0200
committerGitHub <noreply@github.com>2018-10-25 15:49:27 +0200
commit0a2476fcb3823864bceb116d79d48a8278ea4981 (patch)
treece61bc3b9a2a659eeeee60f274cc7728f2803bf1 /apps
parent116268a2b594938b9adec2ee65ef4b0391327630 (diff)
parentb09f7ad822835cdf795a444ba856ae8097f51cc8 (diff)
downloadnextcloud-server-0a2476fcb3823864bceb116d79d48a8278ea4981.tar.gz
nextcloud-server-0a2476fcb3823864bceb116d79d48a8278ea4981.zip
Merge pull request #11988 from nextcloud/docs/jsdoc-build
JSdoc build fixes and move build script out of the root folder
Diffstat (limited to 'apps')
-rw-r--r--apps/comments/js/commentsmodifymenu.js1
-rw-r--r--apps/files/js/favoritesplugin.js4
-rw-r--r--apps/files/js/recentplugin.js4
-rw-r--r--apps/files/js/tagsplugin.js4
4 files changed, 7 insertions, 6 deletions
diff --git a/apps/comments/js/commentsmodifymenu.js b/apps/comments/js/commentsmodifymenu.js
index fd1e3d80bd0..2640dcf4201 100644
--- a/apps/comments/js/commentsmodifymenu.js
+++ b/apps/comments/js/commentsmodifymenu.js
@@ -15,6 +15,7 @@
* Construct a new CommentsModifyMenuinstance
* @constructs CommentsModifyMenu
* @memberof OC.Comments
+ * @private
*/
var CommentsModifyMenu = OC.Backbone.View.extend({
tagName: 'div',
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',