Skip to content

Commit

Permalink
fix DKIM tooltip in TB 69
Browse files Browse the repository at this point in the history
  • Loading branch information
lieser committed Jul 4, 2019
1 parent 133a067 commit 02a66cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chrome/content/dkim.js
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ var that = {
*/
setCollapsed: function Display_setCollapsed(state) {
function setDKIMFromTooltip(headerBox) {
var emailDisplayButton = headerBox.emailAddresses.boxObject.firstChild;
var emailDisplayButton = headerBox.emailAddresses.firstChild.firstChild;
if (emailDisplayButton) {
emailDisplayButton.tooltip = "dkim-verifier-header-tooltip-from";
emailDisplayButton.setAttribute("tooltiptextSaved",
Expand All @@ -679,7 +679,7 @@ var that = {
}
}
function removeDKIMFromTooltip(headerBox) {
var emailDisplayButton = headerBox.emailAddresses.boxObject.firstChild;
var emailDisplayButton = headerBox.emailAddresses.firstChild.firstChild;
if (emailDisplayButton) {
if (emailDisplayButton.tooltip === "dkim-verifier-header-tooltip-from") {
emailDisplayButton.tooltip = "";
Expand Down

0 comments on commit 02a66cf

Please sign in to comment.