diff --git a/engine.js b/engine.js
index c4b555f..1a4bae2 100644
--- a/engine.js
+++ b/engine.js
@@ -824,114 +824,7 @@ window.setupEventHandlers = function() {
});
}
- const projectInput = document.getElementById("projectInput");
- if (projectInput) {
- projectInput.addEventListener("change", async (ev) => {
- const file = ev.target.files[0];
- if (!file) return;
- try {
- const text = await file.text();
- const cfg = JSON.parse(text);
-
- // For manually loaded projects, try to infer base path from filename
- // If it's example/project.json or binect/project.json, set appropriate base path
- const filename = file.name;
- if (filename === 'project.json') {
- // Try to detect if this is a known project by checking the config
- if (cfg.name && cfg.name.includes('Example')) {
- window.timelineEngine.projectBasePath = 'example/';
- console.log("Detected example project, setting base path to example/");
- } else if (cfg.name && (cfg.name.includes('My Project') || cfg.name.includes('Roadmap'))) {
- window.timelineEngine.projectBasePath = 'my-project/';
- console.log("Detected my-project, setting base path to my-project/");
- } else {
- window.timelineEngine.projectBasePath = '';
- console.log("Unknown project, clearing base path");
- }
- } else {
- window.timelineEngine.projectBasePath = '';
- }
-
- window.timelineEngine.updateFileStatus('project', file.name, 'loaded');
-
- // Enable project edit button
- if (window.fileEditor) {
- window.fileEditor.enableEditButton('project');
- }
-
- await window.timelineEngine.loadProjectConfigObject(cfg);
-
- // Show message about relative paths if project has data sources
- if (cfg.dataSource || cfg.stylesheet || cfg.svgTemplate) {
- const viewer = document.getElementById("viewer");
- if (viewer && (viewer.innerHTML.includes("could not be loaded") || viewer.innerHTML.includes("Keine gรผltigen Items"))) {
- viewer.innerHTML += "
๐ก Hinweis: Stelle sicher, dass sich die referenzierten Dateien (CSV, CSS, SVG) im gleichen Verzeichnis wie die HTML-Datei befinden.";
- }
- }
- } catch (error) {
- console.error("Error loading project:", error);
- window.timelineEngine.updateFileStatus('project', file.name, 'error');
- }
- });
- }
-
- const csvInput = document.getElementById("csvInput");
- if (csvInput) {
- csvInput.addEventListener("change", async (ev) => {
- const file = ev.target.files[0];
- if (!file) return;
- const text = await file.text();
- window.timelineEngine.csvOverride = true;
- window.timelineEngine.updateFileStatus('csv', file.name, 'loaded');
-
- // Enable CSV edit button
- if (window.fileEditor) {
- window.fileEditor.enableEditButton('csv');
- }
-
- window.timelineEngine.processCsv(text);
- });
- }
-
- const cssInput = document.getElementById("cssInput");
- if (cssInput) {
- cssInput.addEventListener("change", async (ev) => {
- const file = ev.target.files[0];
- if (!file) return;
- const cssText = await file.text();
- window.timelineEngine.cssData = cssText; // Store for editing
- window.timelineEngine.cssOverride = true;
- const blob = new Blob([cssText], { type: "text/css" });
- document.getElementById("dynamicCss").href = URL.createObjectURL(blob);
- window.timelineEngine.updateFileStatus('css', file.name, 'loaded');
-
- // Enable CSS edit button
- if (window.fileEditor) {
- window.fileEditor.enableEditButton('css');
- }
- });
- }
-
- const svgInput = document.getElementById("svgInput");
- if (svgInput) {
- svgInput.addEventListener("change", async (ev) => {
- const file = ev.target.files[0];
- if (!file) return;
- window.timelineEngine.template = await file.text();
- window.timelineEngine.updateFileStatus('svg', file.name, 'loaded');
-
- // Enable SVG edit button
- if (window.fileEditor) {
- window.fileEditor.enableEditButton('svg');
- }
-
- // Show template fields in debug panel
- window.timelineEngine.showTemplateFields();
-
- // Show template preview immediately when manually loaded
- window.timelineEngine.showTemplatePreview();
- });
- }
+ // Individual file inputs removed - use folder picker instead
const downloadSvg = document.getElementById("downloadSvg");
if (downloadSvg) {
diff --git a/index.html b/index.html
index 431e08e..588e6bd 100644
--- a/index.html
+++ b/index.html
@@ -330,34 +330,29 @@