mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Merge branch 'master' of github.com:cmcaine/tridactyl
This commit is contained in:
commit
70e1e35228
1 changed files with 1 additions and 1 deletions
|
@ -2323,7 +2323,7 @@ export async function buffer(index: number | "#") {
|
|||
*/
|
||||
//#background
|
||||
export async function bufferall(id: string) {
|
||||
let windows = (await browser.windows.getAll()).map(w => w.id).sort()
|
||||
let windows = (await browser.windows.getAll()).map(w => w.id).sort((a, b) => a - b)
|
||||
if (id === null || id === undefined || !id.match(/\d+\.\d+/)) {
|
||||
const tab = await activeTab()
|
||||
let prevId = id
|
||||
|
|
Loading…
Add table
Reference in a new issue