Skip to content

Commit

Permalink
Renamed balloonTipSpan to replyTipSpan for consistency w/ class n…
Browse files Browse the repository at this point in the history
  • Loading branch information
kudo-sync-bot committed Dec 14, 2024
1 parent 14b26e0 commit 325451b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions greasemonkey/amazongpt.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// @description Adds the magic of AI to Amazon shopping
// @author KudoAI
// @namespace https://kudoai.com
// @version 2024.12.14.13
// @version 2024.12.14.14
// @license MIT
// @icon https://amazongpt.kudoai.com/assets/images/icons/amazongpt/black-gold-teal/icon48.png?v=0fddfc7
// @icon64 https://amazongpt.kudoai.com/assets/images/icons/amazongpt/black-gold-teal/icon64.png?v=0fddfc7
Expand Down Expand Up @@ -2944,9 +2944,9 @@

// Create/append answer bubble
const answerPre = document.createElement('pre'),
balloonTipSpan = document.createElement('span')
balloonTipSpan.className = `${app.cssPrefix}-reply-tip`
appDiv.append(balloonTipSpan, answerPre)
replyTipSpan = document.createElement('span')
replyTipSpan.className = `${app.cssPrefix}-reply-tip`
appDiv.append(replyTipSpan, answerPre)

update.style.tweaks() // show/hide 'by KudoAI', update pre-height based on mode
}
Expand Down

0 comments on commit 325451b

Please sign in to comment.