Commit af966d52 by egorpromo

I add new line in methods that render code in the head and for body

parent 6809773c
......@@ -730,7 +730,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";
}
/**
......@@ -747,7 +747,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";
}
/**
......@@ -768,6 +768,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