aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/contactsmenu.js
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-10-24 16:24:16 +0200
committerJulius Härtl <jus@bitgrid.net>2018-10-24 16:24:16 +0200
commitd14434fa2e6061e2e8632d9f8957e46f715b8de1 (patch)
treee203bf8b46eb7cdca0d5fa589c378d1fffe6d28c /core/js/contactsmenu.js
parent5d888984a0db8dfc04be8b398e75f04f6894fa32 (diff)
downloadnextcloud-server-d14434fa2e6061e2e8632d9f8957e46f715b8de1.tar.gz
nextcloud-server-d14434fa2e6061e2e8632d9f8957e46f715b8de1.zip
Adjust some jsdocs
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/js/contactsmenu.js')
-rw-r--r--core/js/contactsmenu.js13
1 files changed, 11 insertions, 2 deletions
diff --git a/core/js/contactsmenu.js b/core/js/contactsmenu.js
index 8c9b7060a74..d6565a40076 100644
--- a/core/js/contactsmenu.js
+++ b/core/js/contactsmenu.js
@@ -22,6 +22,10 @@
*
*/
+/**
+ * @module OC.ContactsMenu
+ * @private
+ */
(function(OC, $, _, Handlebars) {
'use strict';
@@ -56,6 +60,7 @@
/**
* @class ContactCollection
+ * @private
*/
var ContactCollection = OC.Backbone.Collection.extend({
model: Contact
@@ -63,10 +68,11 @@
/**
* @class ContactsListView
+ * @private
*/
var ContactsListView = OC.Backbone.View.extend({
- /** @type {ContactsCollection} */
+ /** @type {ContactCollection} */
_collection: undefined,
/** @type {array} */
@@ -115,7 +121,8 @@
});
/**
- * @class CotnactsListItemView
+ * @class ContactsListItemView
+ * @private
*/
var ContactsListItemView = OC.Backbone.View.extend({
@@ -205,6 +212,7 @@
/**
* @class ContactsMenuView
+ * @private
*/
var ContactsMenuView = OC.Backbone.View.extend({
@@ -364,6 +372,7 @@
* @param {jQuery} options.el
* @param {jQuery} options.trigger
* @class ContactsMenu
+ * @memberOf OC
*/
var ContactsMenu = function(options) {
this.initialize(options);