1
0
mirror of https://github.com/MailHops/mailhops-plugin.git synced 2025-05-20 08:00:14 -07:00

Removed box not being used

This commit is contained in:
Andrew Van Tassel 2016-12-26 13:31:02 -07:00
parent 6ddfcba958
commit 2057c4225b
2 changed files with 1 additions and 3 deletions

View File

@ -11,7 +11,7 @@ MailHops is an email route API. It does a few things:
1. Will tag and mark messages as Junk if from a Country you don't like 1. Will tag and mark messages as Junk if from a Country you don't like
1. Performs DNSBL check on messages 1. Performs DNSBL check on messages
<img src="screenshot.png" alt="MailHops screenshot" title="MailHops" /> <img src="screenshot.png" alt="MailHops screenshot" title="MailHops" style="border: 1px solid #777;" />
### Editing the code ### Editing the code
1. After you make changes you can run the [build.sh](build.sh) script 1. After you make changes you can run the [build.sh](build.sh) script

View File

@ -10,14 +10,12 @@ var mailHopsDisplay =
mailhopsDataPaneDNSBL: null, mailhopsDataPaneDNSBL: null,
mailhopsResultWeather: null, mailhopsResultWeather: null,
mailhopsUnsubscribe: null, mailhopsUnsubscribe: null,
mailhopsNoficationBox: null,
options: null, options: null,
init: function(options){ init: function(options){
this.options = options; this.options = options;
this.mailhopsNoficationBox = document.getElementById("mailhopsNoficationBox");
this.container = document.getElementById("mailhopsBox"); this.container = document.getElementById("mailhopsBox");
this.resultBox = document.getElementById("mailhopsResult"); this.resultBox = document.getElementById("mailhopsResult");
this.resultText = document.getElementById("mailhopsResultText"); this.resultText = document.getElementById("mailhopsResultText");