Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2850)

Unified Diff: remoting/webapp/event_handlers.js

Issue 9903008: Added first-run infographic screens for IT2Me and Me2Me. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/webapp/event_handlers.js
diff --git a/remoting/webapp/event_handlers.js b/remoting/webapp/event_handlers.js
index d1b1d7507775f8444d6fce8720b4e109c56d9fe6..fb7e0160200767099144253de1f94eede28ba6fc 100644
--- a/remoting/webapp/event_handlers.js
+++ b/remoting/webapp/event_handlers.js
@@ -72,7 +72,11 @@ function onLoad() {
fn: function() { remoting.askPinDialog.showForPin(); } },
{ event: 'click', id: 'stop-daemon', fn: stopDaemon },
{ event: 'submit', id: 'access-code-form', fn: sendAccessCode },
- { event: 'submit', id: 'pin-form', fn: connectHostWithPin }
+ { event: 'submit', id: 'pin-form', fn: connectHostWithPin },
+ { event: 'click', id: 'get-started-it2me',
+ fn: remoting.showIt2MeUiAndSave },
+ { event: 'click', id: 'get-started-me2me',
+ fn: remoting.showMe2MeUiAndSave }
];
for (var i = 0; i < actions.length; ++i) {

Powered by Google App Engine
This is Rietveld 408576698