Index: remoting/webapp/base/js/auth_dialog.js |
diff --git a/remoting/webapp/base/js/auth_dialog.js b/remoting/webapp/base/js/auth_dialog.js |
index 34b621c885d23b6f510466b67bff12d927590b73..6cde0e87ae8e71bf4a16cfda01ee7dae486c3ca5 100644 |
--- a/remoting/webapp/base/js/auth_dialog.js |
+++ b/remoting/webapp/base/js/auth_dialog.js |
@@ -19,28 +19,16 @@ var instance_ = null; |
* @private |
*/ |
remoting.AuthDialog = function(rootElement) { |
- /** |
- * @type {HTMLElement} |
- * @private |
- */ |
+ /** @private {HTMLElement} */ |
this.rootElement_ = rootElement; |
- /** |
- * @type {HTMLElement} |
- * @private |
- */ |
+ /** @private {HTMLElement} */ |
this.borderElement_ = rootElement.querySelector('#auth-dialog-border'); |
- /** |
- * @type {HTMLElement} |
- * @private |
- */ |
+ /** @private {HTMLElement} */ |
this.authButton_ = rootElement.querySelector('#auth-button'); |
- /** |
- * @type {base.Deferred} |
- * @private |
- */ |
+ /** @private {base.Deferred} */ |
this.onAuthButtonDeferred_ = null; |
this.authButton_.addEventListener('click', this.onClick_.bind(this), false); |