Browse Source

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

tags/2.0.0-beta
egorpromo 11 years ago
parent
commit
af966d529a
  1. 6
      framework/yii/base/View.php

6
framework/yii/base/View.php

@ -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";
}
}

Loading…
Cancel
Save