| Index: chrome/installer/setup/eula/oem.js
|
| ===================================================================
|
| --- chrome/installer/setup/eula/oem.js (revision 0)
|
| +++ chrome/installer/setup/eula/oem.js (revision 0)
|
| @@ -0,0 +1,18 @@
|
| +function checkAccept(f) {
|
| + if (f.accept.checked) {
|
| + window.returnValue = 1;
|
| + } else {
|
| + window.returnValue = 2;
|
| + }
|
| + window.close();
|
| +}
|
| +
|
| +function resize() {
|
| + var ifr = document.getElementById('ifr');
|
| + var footer = document.getElementById('footer');
|
| +
|
| + ifr.height = footer.offsetTop - ifr.offsetTop;
|
| +}
|
| +
|
| +window.onresize = resize;
|
| +window.onload = resize;
|
|
|