| Index: remoting/webapp/app_remoting/js/submenu_manager.js
|
| diff --git a/remoting/webapp/app_remoting/js/submenu_manager.js b/remoting/webapp/app_remoting/js/submenu_manager.js
|
| index d5f4a8f6e91d5bf127f8be6486b64a3c0a3044d8..86ce39c1e95a86db96d31c27ee2dc2b9cbf10891 100644
|
| --- a/remoting/webapp/app_remoting/js/submenu_manager.js
|
| +++ b/remoting/webapp/app_remoting/js/submenu_manager.js
|
| @@ -20,30 +20,15 @@ var remoting = remoting || {};
|
| * @constructor
|
| */
|
| remoting.SubmenuManager = function(adapter, title, checkable) {
|
| - /**
|
| - * @type {remoting.ContextMenuAdapter}
|
| - * @private
|
| - */
|
| + /** @private {remoting.ContextMenuAdapter} */
|
| this.adapter_ = adapter;
|
| - /**
|
| - * @type {string}
|
| - * @private
|
| - */
|
| + /** @private {string} */
|
| this.title_ = title;
|
| - /**
|
| - * @type {boolean}
|
| - * @private
|
| - */
|
| + /** @private {boolean} */
|
| this.checkable_ = checkable;
|
| - /**
|
| - * @type {!Object}
|
| - * @private
|
| - */
|
| + /** @private {!Object} */
|
| this.childIds_ = {};
|
| - /**
|
| - * @type {string}
|
| - * @private
|
| - */
|
| + /** @private {string} */
|
| this.parentId_ = '';
|
| };
|
|
|
|
|