Index: remoting/webapp/client_screen.js |
diff --git a/remoting/webapp/client_screen.js b/remoting/webapp/client_screen.js |
index 3577f7944771a59bca67bad33d27df1e3e0a0fbc..b10e9af39ad20a72a9bfb7433680526b18493812 100644 |
--- a/remoting/webapp/client_screen.js |
+++ b/remoting/webapp/client_screen.js |
@@ -288,7 +288,7 @@ function startSession_() { |
remoting.clientSession = |
new remoting.ClientSession( |
remoting.hostJid, remoting.hostPublicKey, |
- remoting.accessCode, "v1_token", "", |
+ remoting.accessCode, 'v1_token', '', |
/** @type {string} */ (remoting.oauth2.getCachedEmail()), |
remoting.ClientSession.Mode.IT2ME, |
onClientStateChange_); |
@@ -422,7 +422,7 @@ remoting.connectMe2Me = function(hostId, retryIfOffline) { |
// TODO(jamiewalch): Reinstate the PIN screen once it's supported. |
// remoting.setMode(remoting.AppMode.CLIENT_PIN_PROMPT); |
remoting.connectMe2MeWithPin(); |
-} |
+}; |
/** |
* Start a connection to the specified host, using the cached details |
@@ -462,7 +462,7 @@ function connectMe2MeWithAccessToken_(token) { |
remoting.clientSession = |
new remoting.ClientSession( |
remoting.hostJid, remoting.hostPublicKey, |
- pin, "v1_token", remoting.hostId, |
+ pin, 'v1_token', remoting.hostId, |
/** @type {string} */ (remoting.oauth2.getCachedEmail()), |
remoting.ClientSession.Mode.ME2ME, onClientStateChange_); |
remoting.clientSession.createPluginAndConnect( |