-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
textarea に画像をアップロードしたときのプレビュー画面に表示された画像をクリックすると、別タブで開かれるようにしました #8045
textarea に画像をアップロードしたときのプレビュー画面に表示された画像をクリックすると、別タブで開かれるようにしました #8045
Conversation
@su-su-su-su |
@goruchanchan |
@su-su-su-su お手数をおかけしますがよろしくお願いいたします🙇♂️ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@goruchanchan
動作とコード確認しました。勉強になりました🙇♂️
Approveします!
@su-su-su-su @komagata |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確認させて頂きました。OKです〜🙆♂️
Issue
概要
以前のPRにて textarea に画像をアップロードした際の記法を、マークダウン形式から HTML タグ形式にしましたが、画像をクリックすると別タブで表示できなくなってしまったため表示できるようにしました。参考
変更に伴い textarea-markdown npm を更新しています。npm のコード修正はこちらの PR にて実施済みとなっているため確認不要です。本 PR では FBC アプリでの機能確認が主となります。
変更確認方法
bin/setup
で npm を更新foreman start -f Procfile.dev
でアプリを立ち上げる<a href="{画像のURL}" target="_blank" rel="noopener noreferrer"><img src="{画像のURL}" width="xxxx" height="xxxx" alt="{画像のファイル名}"></a>
となっていることを確認するNote
textarea へ画像をアップロードするページは複数ありますが、代表例として『お知らせ作成』のみを確認いただこうと思います。
Screenshot
変更前
画像をテキストエリアに貼り付けて、プレビューに表示された画像をクリックしても別タブが開かれませんでした。
変更後
プレビューに表示された画像をクリックすると別タブに画像が開かれるようになりました。