hashing the key for registerCss and registerJs.

This commit is contained in:
Qiang Xue
2013-05-20 07:55:05 -04:00
parent f3d23ec0e9
commit 5f23f631ba

View File

@@ -614,7 +614,7 @@ class View extends Component
*/ */
public function registerCss($css, $options = array(), $key = null) public function registerCss($css, $options = array(), $key = null)
{ {
$key = $key ?: $css; $key = $key ?: md5($css);
$this->css[$key] = Html::style($css, $options); $this->css[$key] = Html::style($css, $options);
} }
@@ -650,7 +650,7 @@ class View extends Component
*/ */
public function registerJs($js, $position = self::POS_READY, $key = null) public function registerJs($js, $position = self::POS_READY, $key = null)
{ {
$key = $key ?: $js; $key = $key ?: md5($js);
$this->js[$position][$key] = $js; $this->js[$position][$key] = $js;
if ($position === self::POS_READY) { if ($position === self::POS_READY) {
$this->registerAssetBundle('yii/jquery'); $this->registerAssetBundle('yii/jquery');