diff options
author | gwilson@google.com <gwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-29 00:08:37 +0000 |
---|---|---|
committer | gwilson@google.com <gwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-29 00:08:37 +0000 |
commit | e68d5358f23687c4a668ea6d2f9577e28d84a53f (patch) | |
tree | 2f19c6f3118e67200cb90f231ad01aff2a7b4e1d /chrome/installer/setup/eula/oem.js | |
parent | 90c2c10f9d47a9ede7e17e067f5e0fe0030dbf57 (diff) | |
download | chromium_src-e68d5358f23687c4a668ea6d2f9577e28d84a53f.zip chromium_src-e68d5358f23687c4a668ea6d2f9577e28d84a53f.tar.gz chromium_src-e68d5358f23687c4a668ea6d2f9577e28d84a53f.tar.bz2 |
Changes the in-application EULA dialog to not require the checkbox be checked to accept the EULA.
Review URL: http://codereview.chromium.org/19436
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8839 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/setup/eula/oem.js')
-rw-r--r-- | chrome/installer/setup/eula/oem.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/setup/eula/oem.js b/chrome/installer/setup/eula/oem.js index 2b0bcbd..febed6b 100644 --- a/chrome/installer/setup/eula/oem.js +++ b/chrome/installer/setup/eula/oem.js @@ -2,7 +2,7 @@ function checkAccept(f) { if (f.accept.checked) {
window.returnValue = 1;
} else {
- window.returnValue = 2;
+ window.returnValue = 6;
}
window.close();
}
|