rmrevin / yii2-minify-view

Yii2 View component with minification css & js
MIT License
191 stars 67 forks source link

Not working with 2amigos/yii2-ckeditor-widget #38

Closed pacificsoftdevld closed 7 years ago

pacificsoftdevld commented 7 years ago

Thanks for your wonderful extension! I have a problem with 2amigos/yii2-ckeditor-widget. It not show when using your extension. Thanks any help. :)

rmrevin commented 7 years ago

Hello. Thanks for issue. We need a demo app which will reproduce the bug, thanks.

rmrevin commented 7 years ago

CKeditor uses dynamically loaded scripts. To combine these two extensions, update yii2-minify-view extension to version 1.12.* and add assets of the editor to the exclude section

'components' => [
    'view' => [
        'class' => \rmrevin\yii\minify\View::class,
        'excludeBundles' => [
            \dosamigos\ckeditor\CKEditorWidgetAsset::class,
            \dosamigos\ckeditor\CKEditorAsset::class,
        ],
    ],
],

Works fine http://playground.rmrevin.com/minify/test-38

pacificsoftdevld commented 7 years ago

Wonderful! It work great! Thanks for your support.