Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
Fixing focus issue
Browse files Browse the repository at this point in the history
  • Loading branch information
andrenatal committed Sep 2, 2018
1 parent 8282959 commit 5c1eef9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const analytics = new TestPilotGA({
ds: 'addon',
an: 'Voice Fill',
aid: '[email protected]',
av: '1.4.0'
av: '1.4.1'
});

browser.runtime.onMessage.addListener(event => {
Expand Down
3 changes: 3 additions & 0 deletions extension/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,9 @@

// Click handler for stm icon
const on_stm_icon_click = event => {
if (event.explicitOriginalTarget !== event.currentTarget) {
return;
}
if (SpeakToMePopup.cancelFetch) {
SpeakToMePopup.cancelFetch = false;
}
Expand Down
2 changes: 1 addition & 1 deletion extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Voice Fill",
"version": "1.4.0",
"version": "1.4.1",
"description": "Adds voice input to popular search pages in Firefox. Learn more about Voice Fill at https://testpilot.firefox.com",
"developer": {
"name": "Emerging Technologies Advanced Dev Team",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "voicefill",
"id": "[email protected]",
"description": "This is a simple WebExtension that adds support to use Speech To Text as an input method in web pages.",
"version": "1.4.0",
"version": "1.4.1",
"author": {
"name": "Andre Natal & Fabrice Desré",
"url": "https://github.com/mozilla/speaktome"
Expand Down

0 comments on commit 5c1eef9

Please sign in to comment.