| Index: chrome/browser/resources/security_warnings/interstitial_v2_mobile.js
|
| diff --git a/chrome/browser/resources/security_warnings/interstitial_v2_mobile.js b/chrome/browser/resources/security_warnings/interstitial_v2_mobile.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9e270909e42b88456b9bd3692b9ea7cebda63081
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/security_warnings/interstitial_v2_mobile.js
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2015 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.
|
| +
|
| +var mobileNav = false;
|
| +
|
| +/**
|
| + * For small screen mobile the navigation buttons are moved
|
| + * below the advanced text.
|
| + */
|
| +function onResize() {
|
| + var helpOuterBox = document.querySelector('#details');
|
| + var mainContent = document.querySelector('#main-content');
|
| + var mediaQuery = '(max-width: 420px) and (orientation: portrait),' +
|
| + '(max-width: 736px) and (max-height: 420px) and (orientation: landscape)';
|
| +
|
| + mobileNav = window.matchMedia(mediaQuery).matches;
|
| +
|
| + mainContent.classList.toggle('hidden', false);
|
| + helpOuterBox.classList.toggle('hidden', true);
|
| +}
|
| +
|
| +function setupMobileNav() {
|
| + window.addEventListener('resize', onResize);
|
| + onResize();
|
| +}
|
| +
|
| +document.addEventListener('DOMContentLoaded', setupMobileNav);
|
|
|