* @since 1.0 */ class MomentAsset extends AssetBundle { /** * @inheritdoc */ public $jsOptions = ['position' => View::POS_HEAD]; /** * @inheritdoc */ public $depends = []; /** * @inheritdoc */ public function init() { $this->setSourcePath(__DIR__ . '/assets'); $this->setupAssets('js', ['js/moment']); parent::init(); } }