Index: chrome/browser/resources/welcome/win10/welcome-win10.js |
diff --git a/chrome/browser/resources/welcome/win10/welcome-win10.js b/chrome/browser/resources/welcome/win10/welcome-win10.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3a864cabd628b9c8396779ace3aed1a73ec5cf15 |
--- /dev/null |
+++ b/chrome/browser/resources/welcome/win10/welcome-win10.js |
@@ -0,0 +1,21 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+cr.define('welcomewin10', function() { |
+ 'use strict'; |
+ |
+ function onContinue(e) { |
+ chrome.send('handleContinue'); |
+ } |
+ |
+ function initialize() { |
+ $('continue-button').addEventListener('click', onContinue); |
+ } |
+ |
+ return { |
+ initialize: initialize |
+ }; |
+}); |
+ |
+document.addEventListener('DOMContentLoaded', welcomewin10.initialize); |