aboutsummaryrefslogtreecommitdiff
path: root/ext/js/pages/settings/backup-controller.js
diff options
context:
space:
mode:
authorstarxeras <starxeras@gmail.com>2023-11-10 19:48:27 -0600
committerstarxeras <starxeras@gmail.com>2023-11-10 19:48:27 -0600
commitc4134168be8bf8df4e7ba4860e3d99b3c2256734 (patch)
treed397833c6d7aca11b9fa452d80f0c61089f59b64 /ext/js/pages/settings/backup-controller.js
parentdae82459073c18c903c0bb54c578476ed83dbfd8 (diff)
`yomichan` -> `yomitan`
Diffstat (limited to 'ext/js/pages/settings/backup-controller.js')
-rw-r--r--ext/js/pages/settings/backup-controller.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/js/pages/settings/backup-controller.js b/ext/js/pages/settings/backup-controller.js
index e429f9c7..c41d4315 100644
--- a/ext/js/pages/settings/backup-controller.js
+++ b/ext/js/pages/settings/backup-controller.js
@@ -17,11 +17,11 @@
*/
import * as Dexie from '../../../lib/dexie.js';
-import {isObject, log} from '../../core.js';
-import {OptionsUtil} from '../../data/options-util.js';
-import {ArrayBufferUtil} from '../../data/sandbox/array-buffer-util.js';
-import {yomichan} from '../../yomichan.js';
-import {DictionaryController} from './dictionary-controller.js';
+import { isObject, log } from '../../core.js';
+import { OptionsUtil } from '../../data/options-util.js';
+import { ArrayBufferUtil } from '../../data/sandbox/array-buffer-util.js';
+import { yomitan } from '../../yomitan.js';
+import { DictionaryController } from './dictionary-controller.js';
export class BackupController {
constructor(settingsController, modalController) {
@@ -95,8 +95,8 @@ export class BackupController {
async _getSettingsExportData(date) {
const optionsFull = await this._settingsController.getOptionsFull();
- const environment = await yomichan.api.getEnvironmentInfo();
- const fieldTemplatesDefault = await yomichan.api.getDefaultAnkiFieldTemplates();
+ const environment = await yomitan.api.getEnvironmentInfo();
+ const fieldTemplatesDefault = await yomitan.api.getDefaultAnkiFieldTemplates();
const permissions = await this._settingsController.permissionsUtil.getAllPermissions();
// Format options
@@ -503,10 +503,10 @@ export class BackupController {
}
async _importDatabase(databaseName, file) {
- await yomichan.api.purgeDatabase();
+ await yomitan.api.purgeDatabase();
await Dexie.import(file, {progressCallback: this._databaseImportProgressCallback});
- yomichan.api.triggerDatabaseUpdated('dictionary', 'import');
- yomichan.trigger('storageChanged');
+ yomitan.api.triggerDatabaseUpdated('dictionary', 'import');
+ yomitan.trigger('storageChanged');
}
_onSettingsImportDatabaseClick() {