| Index: remoting/webapp/crd/js/crd_event_handlers.js
|
| diff --git a/remoting/webapp/crd/js/crd_event_handlers.js b/remoting/webapp/crd/js/crd_event_handlers.js
|
| index 9196e6b3792fc4bae2e7d473d57ada92f35bf7f1..4d21a5a8ee739a4e38bc620cbb4f27df8ca403a6 100644
|
| --- a/remoting/webapp/crd/js/crd_event_handlers.js
|
| +++ b/remoting/webapp/crd/js/crd_event_handlers.js
|
| @@ -47,7 +47,7 @@ remoting.initElementEventHandlers = function() {
|
| remoting.setMode(remoting.AppMode.HOME);
|
| document.getElementById('access-code-entry').value = '';
|
| };
|
| - /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
|
| + /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
|
| var it2me_actions = [
|
| { event: 'click', id: 'access-mode-button', fn: goEnterAccessCode },
|
| { event: 'submit', id: 'access-code-form', fn: sendAccessCode },
|
| @@ -59,7 +59,7 @@ remoting.initElementEventHandlers = function() {
|
| { event: 'click', id: 'host-finished-button', fn: goHome },
|
| { event: 'click', id: 'share-button', fn: remoting.tryShare }
|
| ];
|
| - /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
|
| + /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
|
| var me2me_actions = [
|
| { event: 'click', id: 'change-daemon-pin',
|
| fn: function() { remoting.hostSetupDialog.showForPin(); } },
|
| @@ -72,7 +72,7 @@ remoting.initElementEventHandlers = function() {
|
| fn: function() { remoting.hostSetupDialog.showForStart(); } },
|
| { event: 'click', id: 'stop-daemon', fn: stopDaemon }
|
| ];
|
| - /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
|
| + /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
|
| var host_actions = [
|
| { event: 'click', id: 'close-paired-client-manager-dialog', fn: goHome },
|
| { event: 'click', id: 'host-config-done-dismiss', fn: goHome },
|
| @@ -82,7 +82,7 @@ remoting.initElementEventHandlers = function() {
|
| remoting.AppMode.HOME_MANAGE_PAIRINGS) },
|
| { event: 'click', id: 'stop-sharing-button', fn: remoting.cancelShare }
|
| ];
|
| - /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
|
| + /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
|
| var auth_actions = [
|
| { event: 'click', id: 'cancel-connect-button', fn: goHome },
|
| { event: 'click', id: 'sign-out', fn:remoting.signOut },
|
|
|