mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-07-29 11:57:17 +02:00
- Fix masonry layout. Fill row wise - Resizeable thumbnails - Remove /single-image endpoint. Use Javascript instead to fill the page - Dispatch an event when a single image page gets loaded, so that plugins can be used on those pages - Load a gallery when opening the tab. No initial click on the refresh button required any more - "Use as input" and "use settings" buttons work in both the gallery and the single image view - showToast takes a "doc" argument to allow toasts to be shown on the single image page
15 lines
376 B
HTML
15 lines
376 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/media/css/single-gallery.css">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<button id="use_these_settings" class="primaryButton">Use these settings</button>
|
|
<button id="use_as_input" class="primaryButton">Use as Input</button>
|
|
</div>
|
|
|
|
<img id="focusimg">
|
|
<div id="focusbox" class="panel-box">
|
|
</div>
|
|
</body></html>
|