1
0
mirror of https://github.com/XFox111/TabsAsideExtension.git synced 2026-04-22 07:58:01 +03:00

Patch 1.6.1

One tab remove button removes whole collection fixed (#25)
This commit is contained in:
Michael Gordeev
2020-07-18 21:39:15 +03:00
parent 39f7cd391a
commit 1b7b419168
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -199,10 +199,10 @@ function AddCollection(collection)
} }
)); ));
document.querySelectorAll(".btn.remove").forEach(i => document.querySelectorAll(".header .btn.remove").forEach(i =>
i.onclick = () => RemoveTabs(i.parentElement.parentElement)); i.onclick = () => RemoveTabs(i.parentElement.parentElement));
document.querySelectorAll(".tabsList .btn.remove").forEach(i => document.querySelectorAll(".set .btn.remove").forEach(i =>
i.onclick = () => RemoveOneTab(i.parentElement.parentElement)); i.onclick = () => RemoveOneTab(i.parentElement.parentElement));
} }
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "__MSG_name__", "name": "__MSG_name__",
"version": "1.6", "version": "1.6.1",
"manifest_version": 2, "manifest_version": 2,
"description": "__MSG_description__", "description": "__MSG_description__",
"author": "__MSG_author__", "author": "__MSG_author__",