comparison src/index.html.luan @ 104:46418395c860 default tip

add mute chat
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 14 Jul 2025 00:49:11 -0600
parents 718933af3f40
children
comparison
equal deleted inserted replaced
103:3ea9783cee39 104:46418395c860
123 <button type=button onclick="closeModal(this)">Cancel</button> 123 <button type=button onclick="closeModal(this)">Cancel</button>
124 <button type=submit>Add</button> 124 <button type=submit>Add</button>
125 </div> 125 </div>
126 </form> 126 </form>
127 </dialog> 127 </dialog>
128 <dialog mute>
129 <h2>Mute Chat</h2>
130 <p>
131 <label clickable><input type=checkbox name=mute> Mute notification</label>
132 </p>
133 <div buttons>
134 <button type=button onclick="closeModal(this)">Cancel</button>
135 <button onclick="saveMute(this)">Save</button>
136 </div>
137 </dialog>
128 <input type="file" required onchange="loadedFile(this)"> 138 <input type="file" required onchange="loadedFile(this)">
129 <script> 139 <script>
130 'use strict'; 140 'use strict';
131 141
132 <% 142 <%