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

Side by Side Diff: chrome/installer/setup/eula/oem.js

Issue 20036: Merge r9119 - Fix for OEM EULA... (Closed) Base URL: svn://chrome-svn/chrome/branches/release_154.next/src/
Patch Set: Created 11 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 function checkAccept(f) { 1 function checkAccept(f) {
2 if (f.accept.checked) { 2 if (f.accept.checked) {
3 window.returnValue = 6;
4 } else {
3 window.returnValue = 1; 5 window.returnValue = 1;
4 } else {
5 window.returnValue = 6;
6 } 6 }
7 window.close(); 7 window.close();
8 } 8 }
9 9
10 function resize() { 10 function resize() {
11 var ifr = document.getElementById('ifr'); 11 var ifr = document.getElementById('ifr');
12 var footer = document.getElementById('footer'); 12 var footer = document.getElementById('footer');
13 13
14 ifr.height = footer.offsetTop - ifr.offsetTop; 14 ifr.height = footer.offsetTop - ifr.offsetTop;
15 } 15 }
16 16
17 window.onresize = resize; 17 window.onresize = resize;
18 window.onload = resize; 18 window.onload = resize;
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698