Created
March 28, 2024 11:03
-
-
Save 958/ac5f22f999c39591d0d3838ff1e7bea2 to your computer and use it in GitHub Desktop.
tablacus explorer select previous tabgroup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let n = await te.Data.Tabgroups.Click - 1; | |
const nLen = await GetLength(await te.Data.Tabgroups.Data); | |
if (n < 1) { | |
n = nLen; | |
} | |
if (n >= nLen + 1) { | |
n = 1; | |
} | |
Addons.Tabgroups.Change(n); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment