Chromium Code Reviews| Index: remoting/webapp/base/js/input_dialog.js |
| diff --git a/remoting/webapp/base/js/input_dialog.js b/remoting/webapp/base/js/input_dialog.js |
| index a429400a37f5fa5eebcb7bd45f9afb5a7eb60b49..a55e016923e0114166d5e57e08e98aa008728729 100644 |
| --- a/remoting/webapp/base/js/input_dialog.js |
| +++ b/remoting/webapp/base/js/input_dialog.js |
| @@ -53,6 +53,11 @@ remoting.InputDialog.prototype.show = function() { |
| return this.deferred_.promise(); |
| }; |
| +/** @return {HTMLElement} */ |
| +remoting.InputDialog.prototype.inputField = function() { |
|
kelvinp
2015/04/02 23:28:09
Used by It2MeConnectFlow to clear the inputField u
Jamie
2015/04/03 19:54:23
If it would make the code cleaner, I would be okay
|
| + return this.inputField_; |
| +} |
| + |
| /** @private */ |
| remoting.InputDialog.prototype.onSubmit_ = function() { |
| this.deferred_.resolve(this.inputField_.value); |