Skip to content

Commit 7458e91

Browse files
committed
Bump minVersion to Forefox ESR102 and remove workaround for Firefox older than 71 #1778
1 parent 42512d8 commit 7458e91

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

webextensions/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
"applications": {
217217
"gecko": {
218218
"id": "treestyletab@piro.sakura.ne.jp",
219-
"strict_min_version": "67.0"
219+
"strict_min_version": "102.0"
220220
}
221221
}
222222
}

webextensions/sidebar/drag-and-drop.js

-8
Original file line numberDiff line numberDiff line change
@@ -929,14 +929,6 @@ function onDragStart(event, options = {}) {
929929
TabsStore.windows.get(TabsStore.getCurrentWindowId()).classList.add(kTABBAR_STATE_TAB_DRAGGING);
930930
document.documentElement.classList.add(kTABBAR_STATE_TAB_DRAGGING);
931931

932-
// The drag operation can be canceled by something, then
933-
// "dragend" event is not dispatched and TST wrongly keeps
934-
// its "dragging" state. So we clear the dragging state with
935-
// a delay. (This timer will be cleared immediately by dragover
936-
// event, if the dragging operation is not canceled.)
937-
// See also: https://github.com/piroor/treestyletab/issues/1778#issuecomment-404569842
938-
mFinishCanceledDragOperation = setTimeout(finishDrag, 500, 'onDragStart');
939-
940932
if (!('behavior' in options) &&
941933
configs.showTabDragBehaviorNotification) {
942934
const invertedBehavior = event.shiftKey ? configs.tabDragBehavior : configs.tabDragBehaviorShift;

0 commit comments

Comments
 (0)