steveathon / bootstrap-wysiwyg

Tiny bootstrap-compatible WYSIWYG rich text editor
MIT License
661 stars 1.71k forks source link

Toolbar Insert picture open select file is invalid #80

Closed yzijun closed 8 years ago

yzijun commented 8 years ago

Version = '1.0.4' When i click toolbar insert picture open select file is invalid. This is code

<span class="btn btn-default" title="Insert picture (or just drag & drop)" id="pictureBtn"> 
<i class="fa fa-picture-o"></i>
<input class="imgUpload" type="file" data-role="magic-overlay" data-target="#pictureBtn" data-edit="insertImage" />
</span>

modified

<label class="btn btn-default" title="Insert picture (or just drag & drop)" for="pictureBtn">
<i class="fa fa-picture-o"></i>
<input class="imgUpload" type="file" accept="image/*" data-role="magic-overlay" id="pictureBtn" data-edit="insertImage" />
</label>

I'm sorry My English so poor

codewithtyler commented 8 years ago

Yes, we are aware of this.

PR #68 will fix this once it is merged.

yzijun commented 8 years ago

@RandomlyKnighted thank you