mimicreative / yii2-slimscroll
Nice Scroll Asset Bundle for Yii2
Installs: 7 532
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- bower-asset/jquery-slimscroll: >=1.3.8
- yiisoft/yii2: >=2.0.0
This package is not auto-updated.
Last update: 2024-10-26 20:58:42 UTC
README
Installation
The preferred way to install this extension is through composer.
Add to the require section of your composer.json
file:
"mimicreative/yii2-slimscroll": "~1.0"
And run in terminal
composer update
Usage
Use as the asset bundle in Yii2 View files.
// write this in your view file or layout
\mimicreative\assets\SlimScrollAsset::register($this);
Or maybe you prefer to include it in your asset dependency.
public $depends = [
// ...
'mimicreative\assets\SlimScrollAsset',
// ...
];