Replace Summernote WYSIWYG with TinyMCE

This commit is contained in:
johnnyq
2023-05-08 18:44:00 -04:00
parent 018f52eb67
commit 01a37cb1e1
80 changed files with 3464 additions and 69 deletions

View File

@@ -76,7 +76,7 @@ if (isset($_GET['id']) && intval($_GET['id'])) {
<form action="portal_post.php" method="post">
<input type="hidden" name="ticket_id" value="<?php echo $ticket_id ?>">
<div class="form-group">
<textarea class="form-control summernote" name="comment" placeholder="Add comments.."></textarea>
<textarea class="form-control tinymce" name="comment" placeholder="Add comments.."></textarea>
</div>
<button type="submit" class="btn btn-primary" name="add_ticket_comment">Reply</button>
</form>