mirror of
https://github.com/itflow-org/itflow
synced 2026-03-12 00:34:52 +00:00
replaced SimpleMDE with EasyMDE as SimpleMDE is no longer being maintained MDE now works for client notes also added a MD php parser called parsedown
This commit is contained in:
18
view_client_note_modal.php
Normal file
18
view_client_note_modal.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<div class="modal" id="viewClientNoteModal<?php echo $client_note_id; ?>" tabindex="-1">
|
||||
<div class="modal-dialog modal-xl">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title"><i class="fa fa-note"></i> <?php echo $client_note_subject; ?></h5>
|
||||
<button type="button" class="close" data-dismiss="modal">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php
|
||||
$Parsedown = new Parsedown();
|
||||
echo $Parsedown->text("$client_note_body");
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user