Temp remove custom themes

This commit is contained in:
Zan
2025-10-06 18:21:59 +02:00
parent 80feac12b2
commit 12ecf72052
2 changed files with 6 additions and 6 deletions

View File

@@ -52,7 +52,7 @@
</button>
</div>
</div>
<!--
<div class="setting-section">
<div class="setting-header">
<div>
@@ -173,7 +173,7 @@
</div>
</div>
</div>
-->
<div class="setting-section">
<div class="setting-header">
<span class="material-icons-round">language</span>

View File

@@ -292,7 +292,7 @@ document.addEventListener("DOMContentLoaded", async () => {
}
renderCustomThemes() {
const container = document.getElementById('customThemesList');
/*const container = document.getElementById('customThemesList');
container.innerHTML = '';
if (this.customThemes.length === 0) {
@@ -304,7 +304,7 @@ document.addEventListener("DOMContentLoaded", async () => {
this.customThemes.forEach(theme => {
const themeElement = this.createThemeElement(theme);
container.appendChild(themeElement);
});
});*/
}
createThemeElement(theme) {
@@ -492,7 +492,7 @@ document.addEventListener("DOMContentLoaded", async () => {
}
initializeEventListeners() {
document.getElementById('createCustomTheme').addEventListener('click', () => {
/*document.getElementById('createCustomTheme').addEventListener('click', () => {
this.openThemeEditor();
});
@@ -541,7 +541,7 @@ document.addEventListener("DOMContentLoaded", async () => {
if (e.target.id === 'importModal') {
this.closeImportModal();
}
});
});*/
}
}