Browse Source

theme => enableTheme

tags/2.0.0-beta
Alexander Kochetov 12 years ago
parent
commit
95003093c5
  1. 6
      framework/yii/jui/Widget.php

6
framework/yii/jui/Widget.php

@ -58,14 +58,14 @@ class Widget extends \yii\base\Widget
/** /**
* Registers a specific jQuery UI widget and the related events * Registers a specific jQuery UI widget and the related events
* @param string $name the name of the jQuery UI widget * @param string $name the name of the jQuery UI widget
* @param boolean $theme whether register theme bundle * @param boolean $enableTheme whether register theme bundle
*/ */
protected function registerWidget($name, $theme = true) protected function registerWidget($name, $enableTheme = true)
{ {
$id = $this->options['id']; $id = $this->options['id'];
$view = $this->getView(); $view = $this->getView();
$view->registerAssetBundle("yii/jui/$name"); $view->registerAssetBundle("yii/jui/$name");
if ($theme) { if ($enableTheme) {
$view->registerAssetBundle(static::$theme . "/$name"); $view->registerAssetBundle(static::$theme . "/$name");
} }

Loading…
Cancel
Save