diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-25 15:49:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-25 15:49:27 +0200 |
commit | 0a2476fcb3823864bceb116d79d48a8278ea4981 (patch) | |
tree | ce61bc3b9a2a659eeeee60f274cc7728f2803bf1 /core/js/contactsmenu.js | |
parent | 116268a2b594938b9adec2ee65ef4b0391327630 (diff) | |
parent | b09f7ad822835cdf795a444ba856ae8097f51cc8 (diff) | |
download | nextcloud-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 'core/js/contactsmenu.js')
-rw-r--r-- | core/js/contactsmenu.js | 13 |
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); |