Skip to content

Commit

Permalink
fixed bug in mouse options, changed version in menifest file
Browse files Browse the repository at this point in the history
  • Loading branch information
pramjeet committed Mar 26, 2017
1 parent 6a682ad commit e34035b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

<div class="option-choice mouse-behavior-option" data-mouse-behavior="hover">
<img class="option-choice-image" src="./images/cursor-pointer-hover.png"/>
<p class="option-choice-text">Change Tab on hover, click to shift to the tab and close tabs
<p class="option-choice-text">Change Tab on hover, single click to shift to the tab and close tabs
list.</p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ document.addEventListener('DOMContentLoaded', function () {
if (mouseBehavior == "click") {
changeActiveTab(tab)
}
else if (mouseBehavior == "single-click") {
else {
changeActiveTabAndCloseWindow(tab)
}
}
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Peek-a-tab, Tabs Manager for Google Chrome™",
"description": "Search, preview, jump across, and close tabs quickly in your chrome browser.",
"version": "1.5",
"version": "1.5.3",
"icons": {
"128": "icon_128.png"
},
Expand Down

0 comments on commit e34035b

Please sign in to comment.