Skip to content

Commit

Permalink
Fix issue with search by image button labeling for Jul-19 site version.
Browse files Browse the repository at this point in the history
  • Loading branch information
bijij committed Nov 3, 2019
1 parent a413b7b commit e403b1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/content-script.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ function addSearchImageButton(container, imageURL, version) {
searchImageButtonText = container.querySelector('.irc_ho');
break;
case VERSIONS.JUL19:
searchImageButtonText = container.querySelector('span');
searchImageButtonText = searchImageButton.querySelector('span');
break;
case VERSIONS.OCT19:
searchImageButtonText = searchImageButton;
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "__MSG_appName__",
"version": "3.2.1",
"version": "3.2.2",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
Expand Down

1 comment on commit e403b1e

@needforsuv
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, that fixed it

Please sign in to comment.