Skip to content

Commit

Permalink
Fixed directory separator for assets path.
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrna committed Aug 14, 2016
1 parent de0457b commit 36bfd9a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DatepickerAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DatepickerAsset extends AssetBundle
public function init()
{
$s = DIRECTORY_SEPARATOR;
$this->sourcePath = "@bower{$s}persian-date{$s}dist";
$this->sourcePath = "@bower{$s}persian-datepicker{$s}dist";
parent::init();
}
}
2 changes: 1 addition & 1 deletion DatepickerBlueThemeAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DatepickerBlueThemeAsset extends AssetBundle
public function init()
{
$s = DIRECTORY_SEPARATOR;
$this->sourcePath = "@bower{$s}persian-date{$s}dist";
$this->sourcePath = "@bower{$s}persian-datepicker{$s}dist";
parent::init();
}
}
2 changes: 1 addition & 1 deletion DatepickerCheerupThemeAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DatepickerCheerupThemeAsset extends AssetBundle
public function init()
{
$s = DIRECTORY_SEPARATOR;
$this->sourcePath = "@bower{$s}persian-date{$s}dist";
$this->sourcePath = "@bower{$s}persian-datepicker{$s}dist";
parent::init();
}
}
2 changes: 1 addition & 1 deletion DatepickerDarkThemeAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DatepickerDarkThemeAsset extends AssetBundle
public function init()
{
$s = DIRECTORY_SEPARATOR;
$this->sourcePath = "@bower{$s}persian-date{$s}dist";
$this->sourcePath = "@bower{$s}persian-datepicker{$s}dist";
parent::init();
}
}
2 changes: 1 addition & 1 deletion DatepickerRedblackThemeAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DatepickerRedblackThemeAsset extends AssetBundle
public function init()
{
$s = DIRECTORY_SEPARATOR;
$this->sourcePath = "@bower{$s}persian-date{$s}dist";
$this->sourcePath = "@bower{$s}persian-datepicker{$s}dist";
parent::init();
}
}

0 comments on commit 36bfd9a

Please sign in to comment.