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

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

Issue 18732: Wire the eula and the dialog display code... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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
OLDNEW
(Empty)
1 function checkAccept(f) {
2 if (f.accept.checked) {
3 window.returnValue = 1;
4 } else {
5 window.returnValue = 2;
6 }
7 window.close();
8 }
9
10 function resize() {
11 var ifr = document.getElementById('ifr');
12 var footer = document.getElementById('footer');
13
14 ifr.height = footer.offsetTop - ifr.offsetTop;
15 }
16
17 window.onresize = resize;
18 window.onload = resize;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698