kop / yii2-scroll-pager

Infinite AJAX scrolling for Yii2 ListView widget
https://kop.github.io/yii2-scroll-pager/
MIT License
180 stars 63 forks source link

Fix duplicate registration assetBundle #99

Closed onmotion closed 4 years ago

onmotion commented 4 years ago

If disable asset bundle (for example for ajax requests), if js created through init() this js assets will be forced registered anyway (although it should not)

if (\Yii::$app->request->isAjax) {
            $renderMethod = 'renderPartial';
            \Yii::$app->assetManager->bundles = false;
}

Pjax response: image

kop commented 4 years ago

Thank you!