Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Keyborg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class KeyborgCore implements Disposable {
private _isNavigatingWithKeyboard_DO_NOT_USE = false;

constructor(win: WindowWithKeyborg, props?: KeyborgProps) {
this.id = "c" + ++_lastId;
this.id = "c-" + ++_lastId;
this._win = win;
const doc = win.document;

Expand Down Expand Up @@ -291,7 +291,7 @@ export class Keyborg {
}

private constructor(win: WindowWithKeyborg, props?: KeyborgProps) {
this._id = "k" + ++_lastId;
this._id = "k-" + ++_lastId;
this._win = win;

const current = win.__keyborg;
Expand Down