From 07a0e0e3124e1b0cc0f06ea6450d1bda339617ec Mon Sep 17 00:00:00 2001 From: WmeLuna Date: Wed, 11 Oct 2023 15:25:24 -0400 Subject: [PATCH] Resolve requested changes --- src/settings-tab.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/settings-tab.ts b/src/settings-tab.ts index 6aae544..8a17a76 100644 --- a/src/settings-tab.ts +++ b/src/settings-tab.ts @@ -133,7 +133,7 @@ export class CustomFramesSettingTab extends PluginSettingTab { await this.plugin.saveSettings(); }); }); - new Setting(content) + new Setting(content) .setName("Additional CSS") .setDesc(createFragment(f => { f.createSpan({ text: "A snippet of additional CSS that should be applied to this frame." }); @@ -149,10 +149,10 @@ export class CustomFramesSettingTab extends PluginSettingTab { await this.plugin.saveSettings(); }); }); - new Setting(content) - .setName("Additional JS") + new Setting(content) + .setName("Additional JavaScript") .setDesc(createFragment(f => { - f.createSpan({ text: "A snippet of additional JS that should be applied to this frame." }); + f.createSpan({ text: "A snippet of additional JavaScript that should be applied to this frame." }); f.createEl("br"); f.createEl("em", { text: "Note that this is only applied on Desktop." }); }))