mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -03:00
- Add download-related methods to baseModelApi.js for fetching versions, roots, folders, and downloading models - Replace separate download managers with a unified DownloadManager.js supporting all model types - Create a single download_modals.html template that adapts to model type (LoRA, checkpoint, etc.) - Remove old download modals from lora_modals.html and checkpoint_modals.html - Update apiConfig.js to include civitaiVersions endpoints for each model type - Centralize event handler binding in DownloadManager.js (no more inline HTML handlers) - Modal UI and logic now auto-adapt to the current model type, making future extension easier
12 lines
558 B
HTML
12 lines
558 B
HTML
<!-- Model details Modal -->
|
|
<div id="modelModal" class="modal"></div>
|
|
|
|
{% include 'components/modals/confirm_modals.html' %}
|
|
{% include 'components/modals/settings_modal.html' %}
|
|
{% include 'components/modals/support_modal.html' %}
|
|
{% include 'components/modals/update_modal.html' %}
|
|
{% include 'components/modals/help_modal.html' %}
|
|
{% include 'components/modals/relink_civitai_modal.html' %}
|
|
{% include 'components/modals/example_access_modal.html' %}
|
|
{% include 'components/modals/download_modal.html' %}
|
|
{% include 'components/modals/move_modal.html' %} |