Support global marks which select a tab
This commit is contained in:
parent
6e6e306275
commit
003742ec51
11 changed files with 179 additions and 4 deletions
15
src/background/controllers/mark.js
Normal file
15
src/background/controllers/mark.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import MarkInteractor from '../usecases/mark';
|
||||
|
||||
export default class MarkController {
|
||||
constructor() {
|
||||
this.markInteractor = new MarkInteractor();
|
||||
}
|
||||
|
||||
setGlobal(key, x, y) {
|
||||
this.markInteractor.setGlobal(key, x, y);
|
||||
}
|
||||
|
||||
jumpGlobal(key) {
|
||||
this.markInteractor.jumpGlobal(key);
|
||||
}
|
||||
}
|
Reference in a new issue