mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-07 10:26:50 +01:00
19 lines
315 B
PHP
19 lines
315 B
PHP
<?php
|
|
|
|
namespace app\assets\vendors;
|
|
|
|
use yii\web\AssetBundle;
|
|
|
|
class MasonryAsset extends AssetBundle
|
|
{
|
|
public $sourcePath = '@bower/masonry/dist';
|
|
public $js = [
|
|
'masonry.pkgd.min.js',
|
|
];
|
|
public $publishOptions = [
|
|
'only' => [
|
|
'masonry.pkgd.min.js',
|
|
]
|
|
];
|
|
}
|