mirror of
https://github.com/Mibew/boilerplate-plugin.git
synced 2025-03-22 13:41:28 +03:00
Fix css url on non *nix systems
This commit is contained in:
parent
07315407de
commit
5d285f614f
@ -130,7 +130,7 @@ class Plugin extends \Mibew\Plugin\AbstractPlugin implements \Mibew\Plugin\Plugi
|
|||||||
*/
|
*/
|
||||||
public function addCustomCss(&$args)
|
public function addCustomCss(&$args)
|
||||||
{
|
{
|
||||||
$args['css'][] = $this->getFilesPath() . '/css/styles.css';
|
$args['css'][] = str_replace(DIRECTORY_SEPARATOR, '/', $this->getFilesPath()) . '/css/styles.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user