yii2mod / yii2-comments

Comments module for Yii2
MIT License
158 stars 63 forks source link

JS FormData implementation #40

Closed YuriyKvit closed 7 years ago

YuriyKvit commented 7 years ago

Is it possible to change: var formData = $commentForm.serializeArray(); to FormData object? To make file uploads.

ihorchepurnyi commented 7 years ago

You can create your own comment.js file and override the comment asset as follows:

'assetManager' => [
            'bundles' => [
                'yii2mod\comments\CommentAsset' => [
                    'js' => [
                        'your-own-comment.js',
                     ]
                ],
            ],
        ]