summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/signin/sync_confirmation/sync_confirmation.js
blob: 04c560fac1700efd389ba25a79e8168850fe495c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* Copyright 2017 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. */

import {addWebUIListener} from 'chrome://resources/js/cr.m.js';

import {SyncConfirmationBrowserProxyImpl} from './sync_confirmation_browser_proxy.js';

function initialize() {
  addWebUIListener('clear-focus', clearFocus);
  const syncConfirmationBrowserProxy =
      SyncConfirmationBrowserProxyImpl.getInstance();
  // Prefer using |document.body.offsetHeight| instead of
  // |document.body.scrollHeight| as it returns the correct height of the
  // even when the page zoom in Chrome is different than 100%.
  syncConfirmationBrowserProxy.initializedWithSize(
      [document.body.offsetHeight]);
  // The web dialog size has been initialized, so reset the body width to
  // auto. This makes sure that the body only takes up the viewable width,
  // e.g. when there is a scrollbar.
  document.body.style.width = 'auto';
}

function clearFocus() {
  document.activeElement.blur();
}

document.addEventListener('DOMContentLoaded', initialize);