build: fix web_worker images example not working (#28562)

The web_worker images example is currently not really usable
because the rendered button that can be used to upload
an "image" to the demo is currently not working. This is because
the HTML markup for the `file-field` is not matching what `materialize-css`
expects. See: https://materializecss.com/text-inputs.html

PR Close #28562
This commit is contained in:
Paul Gschwendtner 2019-02-06 14:35:36 +01:00 committed by Miško Hevery
parent 1d20088291
commit cf6d63ca63
1 changed files with 4 additions and 1 deletions

View File

@ -24,10 +24,13 @@
</a> </a>
</div> </div>
<div class="file-field"> <div class="input-field file-field">
<div class="btn blue darken-2"> <div class="btn blue darken-2">
<span>Select Images</span> <span>Select Images</span>
<input type="file" accept="image/bmp" multiple (change)="uploadFiles($event.target.files)" /> <input type="file" accept="image/bmp" multiple (change)="uploadFiles($event.target.files)" />
</div> </div>
<div class="file-path-wrapper">
<input class="file-path validate" type="text" placeholder="Upload one or more files">
</div>
</div> </div>
</section> </section>