Commit ab7af0a6 by Alexander Makarov

Merge pull request #989 from egorpromo/add-new-line-before-generated-code-from-assetbundle

I have add new line in methods that render code in the head and for body
parents afcfb113 af966d52
......@@ -773,7 +773,7 @@ class View extends Component
if (!empty($this->js[self::POS_HEAD])) {
$lines[] = Html::script(implode("\n", $this->js[self::POS_HEAD]), array('type' => 'text/javascript'));
}
return empty($lines) ? '' : implode("\n", $lines) . "\n";
return empty($lines) ? '' : "\n" . implode("\n", $lines) . "\n";
}
/**
......@@ -790,7 +790,7 @@ class View extends Component
if (!empty($this->js[self::POS_BEGIN])) {
$lines[] = Html::script(implode("\n", $this->js[self::POS_BEGIN]), array('type' => 'text/javascript'));
}
return empty($lines) ? '' : implode("\n", $lines) . "\n";
return empty($lines) ? '' : "\n" . implode("\n", $lines) . "\n";
}
/**
......@@ -811,6 +811,6 @@ class View extends Component
$js = "jQuery(document).ready(function(){\n" . implode("\n", $this->js[self::POS_READY]) . "\n});";
$lines[] = Html::script($js, array('type' => 'text/javascript'));
}
return empty($lines) ? '' : implode("\n", $lines) . "\n";
return empty($lines) ? '' : "\n" . implode("\n", $lines) . "\n";
}
}
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