2024-01-25 17:37:49 +07:00
|
|
|
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/5/tinymce.min.js" referrerpolicy="origin"></script>
|
2025-02-11 16:22:18 +07:00
|
|
|
<script src="{{ 'RowExpand.js' | asset_url }}"></script>
|
2024-01-25 17:37:49 +07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
tinymce.init({
|
|
|
|
|
selector: 'textarea#product-desc',
|
|
|
|
|
height: 350,
|
|
|
|
|
menubar: true,
|
|
|
|
|
plugins: [
|
|
|
|
|
'advlist autolink lists link image charmap print preview anchor',
|
|
|
|
|
'searchreplace visualblocks code fullscreen',
|
|
|
|
|
'insertdatetime media table paste code help wordcount'
|
|
|
|
|
],
|
|
|
|
|
toolbar: 'undo redo | formatselect | ' +
|
|
|
|
|
'bold italic backcolor | alignleft aligncenter ' +
|
|
|
|
|
'alignright alignjustify | bullist numlist outdent indent | ' +
|
|
|
|
|
'removeformat | help',
|
|
|
|
|
content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:14px }'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
2024-02-27 13:31:27 +07:00
|
|
|
tinymce.init({
|
|
|
|
|
selector: 'textarea#product-static',
|
|
|
|
|
height: 350,
|
|
|
|
|
menubar: true,
|
|
|
|
|
plugins: [
|
|
|
|
|
'advlist autolink lists link image charmap print preview anchor',
|
|
|
|
|
'searchreplace visualblocks code fullscreen',
|
|
|
|
|
'insertdatetime media table paste code help wordcount'
|
|
|
|
|
],
|
|
|
|
|
toolbar: 'undo redo | formatselect | ' +
|
|
|
|
|
'bold italic backcolor | alignleft aligncenter ' +
|
|
|
|
|
'alignright alignjustify | bullist numlist outdent indent | ' +
|
|
|
|
|
'removeformat | help',
|
|
|
|
|
content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:14px }'
|
|
|
|
|
});
|
|
|
|
|
|
2024-01-25 17:37:49 +07:00
|
|
|
|
|
|
|
|
</script>
|