swilson1337/jquery-pjax-queued

Puts Pjax requests into a queue to allow multiple on one page

Installs: 3 477

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

Type:yii2-extension

1.1.4 2017-12-22 14:26 UTC

This package is auto-updated.

Last update: 2024-05-08 18:02:01 UTC


README

Requires that you edit your web config and add the 'assetManager' component similar to this:

'assetManager' => [
	'bundles' => [
		'yii\widgets\PjaxAsset' => [
			'sourcePath' => '@vendor/swilson1337/jquery-pjax-queued',
			'js' => [
				'jquery.pjax.js',
			],
			'jsOptions' => [
				'position' => \yii\web\View::POS_HEAD,
			],
		],
	],
],