forked from SillyTavern/Extension-Idle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdropdown.html
21 lines (20 loc) · 1.06 KB
/
dropdown.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="auto_send-settings">
<div class="inline-drawer">
<div class="inline-drawer-toggle inline-drawer-header" title="Indicates the settings for the auto_send feature.">
<b>Auto Send</b>
<div class="inline-drawer-icon fa-solid fa-circle-chevron-down down"></div>
</div>
<div class="inline-drawer-content">
<div class="auto_send_block flex-container">
<input id="auto_send_enabled" type="checkbox" title="Toggle to enable or disable the auto send feature." />
<label for="auto_send_enabled">Enabled</label>
</div>
<div class="auto_send_block flex-container">
<input id="auto_send_timer" class="text_pole widthUnset" type="number" min="0" max="600000" step="1" title="The amount of time in seconds before the auto send action is triggered." />
<label for="auto_send_timer">Auto Send Timer (seconds)</label>
</div>
<!-- TODO should we include a marker to more easily identify auto-sent prompts, e.g. for easier deletion and editing? -->
<hr class="sysHR" />
</div>
</div>
</div>