git ssb

16+

Dominic / patchbay



Commit 5b08fed359b3d156bdeab7bd22870464aa987130

Add help text to buttons

Anders Rune Jensen committed on 4/23/2019, 9:45:15 PM
Parent: 363336fe298e60c3fb2e3cf0f418c70da4dc9c0f

Files changed

message/html/compose.jschanged
message/html/compose.jsView
@@ -125,9 +125,9 @@
125125
126126 var fileInput = h('input', {
127127 type: 'file',
128128 // accept,
129- attributes: { multiple: true },
129 + attributes: { multiple: true, title: 'Add files as blobs' },
130130 'ev-click': () => hasContent.set(true),
131131 'ev-change': (ev) => {
132132 warningMessages.set([])
133133
@@ -160,8 +160,9 @@
160160 }
161161
162162 var datInput = h('input.dat', {
163163 type: 'file',
164 + attributes: { title: 'Add file as dat link' },
164165 'ev-click': () => hasContent.set(true),
165166 'ev-change': (ev) => {
166167 const file = ev.target.files[0]
167168 datSharedFiles.shareFile(file.path, (datLink) => {

Built with git-ssb-web