feat: add credits modal and update docker config
- Add credits modal showing project creators and libraries used - Replace bottom-of-canvas credits with clickable credits button - Update docker-compose to pull pre-built image from git.azuze.fr registry - Simplify README Docker instructions Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1785,6 +1785,14 @@ function importExportModal() {
|
||||
}
|
||||
$('#share').on('click', importExportModal);
|
||||
|
||||
// Open credits modal
|
||||
function creditsModal() {
|
||||
hideModals();
|
||||
$('#credits-modal').toggleClass('modal-open');
|
||||
$('#background-overlay').toggleClass('modal-open');
|
||||
}
|
||||
$('#credits-button').on('click', creditsModal);
|
||||
|
||||
function searchInput() {
|
||||
var value = $(this).val().toLowerCase();
|
||||
if (value == '') {
|
||||
|
||||
Reference in New Issue
Block a user