Commit 1edeb7aa by Qiang Xue

Fixed test break.

parent 5f8e6d37
......@@ -146,16 +146,16 @@ class AssetBundle extends Object
{
foreach ($this->js as $js) {
if (strpos($js, '/') !== 0 && strpos($js, '://') === false) {
$view->registerJsFile($this->baseUrl . '/' . $js, $this->jsOptions);
$view->registerJsFile($this->baseUrl . '/' . $js, [], $this->jsOptions);
} else {
$view->registerJsFile($js, $this->jsOptions);
$view->registerJsFile($js, [], $this->jsOptions);
}
}
foreach ($this->css as $css) {
if (strpos($css, '/') !== 0 && strpos($css, '://') === false) {
$view->registerCssFile($this->baseUrl . '/' . $css, $this->cssOptions);
$view->registerCssFile($this->baseUrl . '/' . $css, [], $this->cssOptions);
} else {
$view->registerCssFile($css, $this->cssOptions);
$view->registerCssFile($css, [], $this->cssOptions);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment