diff --git a/chrome/content/images/mailhops16.png b/chrome/content/images/mailhops16.png new file mode 100644 index 0000000..8279289 Binary files /dev/null and b/chrome/content/images/mailhops16.png differ diff --git a/chrome/content/images/mailhops24.png b/chrome/content/images/mailhops24.png new file mode 100644 index 0000000..6e54767 Binary files /dev/null and b/chrome/content/images/mailhops24.png differ diff --git a/chrome/content/mailhops-2-msgNotificationBar.js b/chrome/content/mailhops-2-msgNotificationBar.js index bd8097e..df1151b 100644 --- a/chrome/content/mailhops-2-msgNotificationBar.js +++ b/chrome/content/mailhops-2-msgNotificationBar.js @@ -18,6 +18,7 @@ var mailHopsDisplay = this.options = options; this.mhBox = document.getElementById("mailhopsNoficationBox"); + this.mhNoteBox = document.getElementById("mailhopsNotification"); this.resultBox = document.getElementById("mailhopsResult"); this.resultText = document.getElementById("mailhopsResultText"); this.mailhopsResultWeather = document.getElementById("mailhopsResultWeather"); @@ -25,7 +26,8 @@ var mailHopsDisplay = this.resultDetails = document.getElementById("mailhopsDataPaneDetails"); this.mailHopsAccountMessage = document.getElementById("mailHopsAccountMessage"); this.mailhopsDataPaneHops = document.getElementById("mailhopsDataPaneHops"); - + + //auth this.mailhopsDataPaneSPF = document.getElementById("mailhopsDataPaneSPF"); this.mailhopsDataPaneDKIM = document.getElementById("mailhopsDataPaneDKIM"); @@ -33,7 +35,8 @@ var mailHopsDisplay = this.mailhopsDataPaneDNSBL = document.getElementById("mailhopsDataPaneDNSBL"); //wait for message to be selected before showing - if(!reload && this.mhBox) this.mhBox.style.display = 'none'; + if (!reload && this.mhBox) + this.mhBox.style.display = 'none'; //event listner for route click to launch map this.mailhopsDataPaneDNSBL.addEventListener("click", function () { @@ -70,12 +73,12 @@ var mailHopsDisplay = }); if(!!options.bar_color) - this.mhBox.style.background = options.bar_color; + this.mhNoteBox.style.background = options.bar_color; else - this.mhBox.style.background = ''; + this.mhNoteBox.style.background = ''; if(!!options.font_size) - this.mhBox.style.fontSize = options.font_size; + this.mhNoteBox.style.fontSize = options.font_size; if(!!options.font_color){ this.resultText.style.color = options.font_color; diff --git a/chrome/content/mailhops-3.js b/chrome/content/mailhops-3.js index 46341cb..0fc061d 100644 --- a/chrome/content/mailhops-3.js +++ b/chrome/content/mailhops-3.js @@ -8,7 +8,7 @@ var mailHops = { msgURI: null, isLoaded: false, options: { - 'version':'MailHops Plugin 3.7.1', + 'version':'MailHops Plugin 3.7.3', 'lan':'en', 'unit':'mi', 'api_http':'https://', diff --git a/chrome/content/msgNotificationBar.xul b/chrome/content/msgNotificationBar.xul index fe9af61..3d2cd88 100644 --- a/chrome/content/msgNotificationBar.xul +++ b/chrome/content/msgNotificationBar.xul @@ -12,9 +12,11 @@