Logo
Stockholm-icons / Shopping / Cart3 Created with Sketch.
Stockholm-icons / Layout / Layout-4-blocks Created with Sketch.
Stockholm-icons / Communication / Group-chat Created with Sketch.
Hi, Sean S

Basic Demo

Compose a message

                            <div class="card card-custom">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        Basic Demo
                                    </h3>
                                </div>
                                <div class="card-body">
                                    <div id="kt_quil_1" style="height: 325px">
                                        Compose a message
                                    </div>
                                </div>
                            </div>
			        	    

                            // Class definition
                            var KTQuilDemos = function() {

                                // Private functions
                                var demo1 = function() {
                                    var quill = new Quill('#kt_quil_1', {
                                        modules: {
                                            toolbar: [
                                                [{
                                                    header: [1, 2, false]
                                                }],
                                                ['bold', 'italic', 'underline'],
                                                ['image', 'code-block']
                                            ]
                                        },
                                        placeholder: 'Type your text here...',
                                        theme: 'snow' // or 'bubble'
                                    });
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demo1();
                                        demo2();
                                    }
                                };
                            }();

                            jQuery(document).ready(function() {
                                KTQuilDemos.init();
                            });

                            

Auto Save

Compose a message

                            <div class="card card-custom">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        Auto Save
                                    </h3>
                                </div>
                                <div class="card-body">
                                    <div id="kt_quil_2" style="height: 325px">
                                        Compose a message
                                    </div>
                                </div>
                            </div>
			        	    

                            // Class definition
                            var KTQuilDemos = function() {

                                // Private functions
                                var demo2 = function() {
                                    var Delta = Quill.import('delta');
                                    var quill = new Quill('#kt_quil_2', {
                                        modules: {
                                            toolbar: true
                                        },
                                        placeholder: 'Type your text here...',
                                        theme: 'snow'
                                    });

                                    // Store accumulated changes
                                    var change = new Delta();
                                    quill.on('text-change', function(delta) {
                                        change = change.compose(delta);
                                    });

                                    // Save periodically
                                    setInterval(function() {
                                        if (change.length() > 0) {
                                            console.log('Saving changes', change);
                                            /*
                                            Send partial changes
                                            $.post('/your-endpoint', {
                                            partial: JSON.stringify(change)
                                            });

                                            Send entire document
                                            $.post('/your-endpoint', {
                                            doc: JSON.stringify(quill.getContents())
                                            });
                                            */
                                            change = new Delta();
                                        }
                                    }, 5 * 1000);

                                    // Check for unsaved data
                                    window.onbeforeunload = function() {
                                        if (change.length() > 0) {
                                            return 'There are unsaved changes. Are you sure you want to leave?';
                                        }
                                    }
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demo2();
                                    }
                                };
                            }();

                            jQuery(document).ready(function() {
                                KTQuilDemos.init();
                            });

                            

User Profile 12 messages

Recent Notifications
Stockholm-icons / Home / Library Created with Sketch.
Another purpose persuade Due in 2 Days
+28%
Stockholm-icons / Communication / Write Created with Sketch.
Would be to people Due in 2 Days
+50%
Stockholm-icons / Communication / Group-chat Created with Sketch. -27%
Stockholm-icons / General / Attachment2 Created with Sketch.
The best product Due in 2 Days
+8%

Shopping Cart

iBlender The best kitchen gadget in 2020
$ 350 for 5
SmartCleaner Smart tool for cooking
$ 650 for 4
CameraMax Professional camera for edge cutting shots
$ 150 for 3
4D Printer Manufactoring unique objects
$ 1450 for 7
MotionWire Perfect animation tool
$ 650 for 7
System Messages
Top Authors Most Successful Fellas
+82$
Popular Authors Most Successful Fellas
+280$
New Users Most Successful Fellas
+4500$
Active Customers Most Successful Fellas
+4500$
Bestseller Theme Most Successful Fellas
+4500$
Notifications
Stockholm-icons / Home / Library Created with Sketch.
Another purpose persuade Due in 2 Days
+28%
Stockholm-icons / Communication / Write Created with Sketch.
Would be to people Due in 2 Days
+50%
Stockholm-icons / Communication / Group-chat Created with Sketch. -27%
Stockholm-icons / General / Attachment2 Created with Sketch.
The best product Due in 2 Days
+8%
Customer Care
Reports
Memebers
Stockholm-icons / Navigation / Up-2 Created with Sketch.

Select A Demo