From 1b7bb4703ae4a754ba3460b248b042cd9bb39a93 Mon Sep 17 00:00:00 2001 From: TC Date: Sat, 14 Jan 2023 16:07:24 +0100 Subject: [PATCH] Snakecase template name --- plugins/captions-selector/front.js | 2 +- ...onsSettingsTemplate.html => captions-settings-template.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename plugins/captions-selector/templates/{captionsSettingsTemplate.html => captions-settings-template.html} (100%) diff --git a/plugins/captions-selector/front.js b/plugins/captions-selector/front.js index 9ae9dbde..275d7803 100644 --- a/plugins/captions-selector/front.js +++ b/plugins/captions-selector/front.js @@ -4,7 +4,7 @@ const { ipcRenderer } = require("electron"); function $(selector) { return document.querySelector(selector); } const captionsSettingsButton = ElementFromFile( - templatePath(__dirname, "captionsSettingsTemplate.html") + templatePath(__dirname, "captions-settings-template.html") ); module.exports = (options) => { diff --git a/plugins/captions-selector/templates/captionsSettingsTemplate.html b/plugins/captions-selector/templates/captions-settings-template.html similarity index 100% rename from plugins/captions-selector/templates/captionsSettingsTemplate.html rename to plugins/captions-selector/templates/captions-settings-template.html