Skip to content

Commit

Permalink
fixed context menu not showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
maciekmm committed May 28, 2018
1 parent bbbf92e commit db1594b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "container-tabs-sidebar",
"version": "0.0.2",
"version": "0.0.3",
"description": "A firefox addon that show tabs in a tree style structure in a sidebar. Inspired by Tree Style Tabs.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Container Tabs Sidebar",
"version": "0.0.2",
"version": "0.0.3",
"description": "Container sidebar tab management",
"homepage_url": "https://github.com/maciekmm/container-tabs-sidebar",
"sidebar_action": {
Expand Down
2 changes: 1 addition & 1 deletion src/sidebar/tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ContainerTab {

this.element.addEventListener('contextmenu', (e) => {
e.preventDefault()
if (CntainerTabsSidebar.contextMenu) {
if (ContainerTabsSidebar.contextMenu) {
ContainerTabsSidebar.hideContextMenu()
return
}
Expand Down

0 comments on commit db1594b

Please sign in to comment.