You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
import * as settingActions from 'background/actions/setting';
|
|
|
|
import messages from 'shared/messages';
|
|
|
|
import BackgroundComponent from 'background/components/background';
|
|
|
|
import reducers from 'background/reducers';
|
|
|
|
import { createStore } from 'shared/store';
|
|
|
|
|
|
|
|
const store = createStore(reducers, (e, sender) => {
|
|
|
|
console.error('Vim-Vixen:', e);
|
|
|
|
if (sender) {
|
|
|
|
return browser.tabs.sendMessage(sender.tab.id, {
|
|
|
|
type: messages.CONSOLE_SHOW_ERROR,
|
|
|
|
text: e.message,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
|
|
const backgroundComponent = new BackgroundComponent(store);
|
|
|
|
|
|
|
|
store.dispatch(settingActions.load());
|