Index: chrome/browser/resources/ssl/blocking.js |
diff --git a/chrome/browser/resources/ssl/blocking.js b/chrome/browser/resources/ssl/blocking.js |
deleted file mode 100644 |
index 6442c386fdbf3a5925166154465570815e7e0b2c..0000000000000000000000000000000000000000 |
--- a/chrome/browser/resources/ssl/blocking.js |
+++ /dev/null |
@@ -1,25 +0,0 @@ |
-// Copyright 2013 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. |
- |
-function toggleMoreBox() { |
- var helpBoxOuter = $('help-box-outer'); |
- helpBoxOuter.classList.toggle('hidden'); |
- var moreLessButton = $('more-less-button'); |
- if (helpBoxOuter.classList.contains('hidden')) { |
- moreLessButton.innerText = templateData.more; |
- } else { |
- moreLessButton.innerText = templateData.less; |
- } |
-} |
- |
-function reloadPage() { |
- sendCommand(CMD_RELOAD); |
-} |
- |
-function setupEvents() { |
- $('reload-button').addEventListener('click', reloadPage); |
- $('more-less-button').addEventListener('click', toggleMoreBox); |
-} |
- |
-document.addEventListener('DOMContentLoaded', setupEvents); |